mirror of
git://git.musl-libc.org/musl
synced 2025-03-07 04:07:30 +00:00
fix simple_malloc malloc(0) behavior not to return non-unique pointers
This commit is contained in:
parent
a23baf586a
commit
598a0147cd
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user