mirror of
https://git.musl-libc.org/git/musl
synced 2025-01-23 22:52:23 +03:00
posix_memalign should fail if size is not a multiple of sizeof(void *)
This commit is contained in:
parent
47e72e10d5
commit
f9ed11f3e1
@ -11,7 +11,7 @@ int posix_memalign(void **res, size_t align, size_t len)
|
||||
unsigned char *mem, *new, *end;
|
||||
size_t header, footer;
|
||||
|
||||
if ((align & -align) != align) return EINVAL;
|
||||
if ((align & -align & -sizeof(void *)) != align) return EINVAL;
|
||||
if (len > SIZE_MAX - align) return ENOMEM;
|
||||
|
||||
if (align <= 4*sizeof(size_t)) {
|
||||
|
Loading…
Reference in New Issue
Block a user