We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 576b702 commit eeb56afCopy full SHA for eeb56af
crates/roc_host/src/lib.rs
@@ -57,6 +57,8 @@ pub unsafe extern "C" fn roc_dealloc(c_ptr: *mut c_void, _alignment: u32) {
57
heap.dealloc(c_ptr);
58
return;
59
}
60
+ // !! If you make any changes to this function, you may also need to update roc_dealloc in
61
+ // https://github.com/roc-lang/basic-webserver
62
let heap = roc_sqlite::heap();
63
if heap.in_range(c_ptr) {
64
0 commit comments