fix simple_malloc malloc(0) behavior not to return non-unique pointers
authorRich Felker <dalias@aerifal.cx>
Sun, 20 Feb 2011 21:12:09 +0000 (16:12 -0500)
committerRich Felker <dalias@aerifal.cx>
Sun, 20 Feb 2011 21:12:09 +0000 (16:12 -0500)
src/malloc/__simple_malloc.c

index 61cd9fc..c029342 100644 (file)
@@ -15,6 +15,7 @@ void *__simple_malloc(size_t n)
        static int lock;
        size_t align=1;
 
+       if (!n) return 0;
        if (n > SIZE_MAX/2) goto toobig;
 
        while (align<n && align<ALIGN)