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.
2 parents 8a1f8a3 + c3b577d commit a126d18Copy full SHA for a126d18
src/alloc-override-osx.c
@@ -43,7 +43,7 @@ extern malloc_zone_t* malloc_default_purgeable_zone(void) __attribute__((weak_im
43
44
static size_t zone_size(malloc_zone_t* zone, const void* p) {
45
MI_UNUSED(zone);
46
- //if (!mi_is_in_heap_region(p)){ return 0; } // not our pointer, bail out
+ if (!mi_is_in_heap_region(p)){ return 0; } // not our pointer, bail out
47
return mi_usable_size(p);
48
}
49
0 commit comments