From: malc Date: Tue, 19 May 2009 18:26:42 +0000 (+0400) Subject: Abort on attempts to allocate zero bytes X-Git-Url: https://repo.or.cz/w/qemu/mini2440.git/commitdiff_plain/a7d27b536ffc0773028a90f14580552c0c3ddb2a Abort on attempts to allocate zero bytes http://marc.info/?t=124267873300015&r=1&w=2 Signed-off-by: malc --- diff --git a/qemu-malloc.c b/qemu-malloc.c index 676185786c..5e9f47f518 100644 --- a/qemu-malloc.c +++ b/qemu-malloc.c @@ -43,6 +43,8 @@ void qemu_free(void *ptr) void *qemu_malloc(size_t size) { + if (!size) + abort(); return oom_check(malloc(size)); } @@ -50,8 +52,11 @@ void *qemu_realloc(void *ptr, size_t size) { if (size) return oom_check(realloc(ptr, size)); - else - return realloc(ptr, size); + else { + if (ptr) + return realloc(ptr, size); + } + abort(); } void *qemu_mallocz(size_t size)