stb_leakcheck: Make stb_leakcheck_free actually free.

Fixes issue #307.
dev
Fabian Giesen 2017-07-22 20:44:27 -07:00
parent 5ebeb38edb
commit 5a5cf7f9ba
1 changed files with 1 additions and 0 deletions

View File

@ -59,6 +59,7 @@ void stb_leakcheck_free(void *ptr)
if (mi->next)
mi->next->prev = mi->prev;
#endif
free(ptr);
}
}