diff options
Diffstat (limited to 'src/stdlib/free.c')
-rw-r--r-- | src/stdlib/free.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stdlib/free.c b/src/stdlib/free.c index 47c04dd0..3662adb3 100644 --- a/src/stdlib/free.c +++ b/src/stdlib/free.c @@ -9,7 +9,7 @@ void free(void * ptr) SIGNAL_SAFE(0); if (ptr) { - __jkmalloc(NULL, NULL, 0, ptr, 0, 0, 0); + __jkmalloc(NULL, NULL, 0, ptr, 0, 0, 0, NULL); } } |