diff options
Diffstat (limited to 'src/common/malloc.c')
-rw-r--r-- | src/common/malloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/malloc.c b/src/common/malloc.c index eda8c3fdb..ff71a2c5e 100644 --- a/src/common/malloc.c +++ b/src/common/malloc.c @@ -289,7 +289,7 @@ void* _mmalloc(size_t size, const char *file, int line, const char *func ) ShowFatalError("Memory manager::memmgr_malloc() serious error (allocating %d+%d bytes at %s:%d)\n", sizeof(struct unit_head_large), size, file, line); memmgr_info(); exit(1); - return NULL; + //return NULL; }; void* _mcalloc(size_t num, size_t size, const char *file, int line, const char *func ) |