Correct the use of MI_DEBUG by conditional build

MI_DEBUG is a macro rather than a variable.
This commit is contained in:
Jim Huang 2019-06-25 21:59:20 +08:00
parent c6c1d5fffd
commit 47e822c70f

View File

@ -234,10 +234,12 @@ static bool _mi_heap_done() {
}
_mi_os_free(heap, sizeof(mi_thread_data_t), &_mi_stats_main);
}
else if (MI_DEBUG > 0) {
#if (MI_DEBUG > 0)
else {
_mi_heap_destroy_pages(heap);
mi_assert_internal(heap->tld->heap_backing == &_mi_heap_main);
}
#endif
return false;
}