mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 23:30:07 +00:00
hurd: Do not allow unmapping address 0
* sysdeps/mach/munmap.c (__munmap): Return EINVAL if `addr' is 0.
This commit is contained in:
parent
f19dfa0afd
commit
fd15a59b20
@ -1,3 +1,7 @@
|
||||
2014-04-16 Samuel Thibault <samuel.thibault@ens-lyon.org>
|
||||
|
||||
* sysdeps/mach/munmap.c (__munmap): Return EINVAL if `addr' is 0.
|
||||
|
||||
2014-04-16 Stefan Liebler <stli@linux.vnet.ibm.com>
|
||||
|
||||
* sysdeps/s390/fpu/libm-test-ulps: Regenerate.
|
||||
|
@ -27,6 +27,13 @@ int
|
||||
__munmap (__ptr_t addr, size_t len)
|
||||
{
|
||||
kern_return_t err;
|
||||
|
||||
if (addr == 0)
|
||||
{
|
||||
errno = EINVAL;
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (err = __vm_deallocate (__mach_task_self (),
|
||||
(vm_address_t) addr, (vm_size_t) len))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user