diff options
Diffstat (limited to 'src/wrapped/wrappedlibc.c')
| -rw-r--r-- | src/wrapped/wrappedlibc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wrapped/wrappedlibc.c b/src/wrapped/wrappedlibc.c index 08e412d0..31c2f2cd 100644 --- a/src/wrapped/wrappedlibc.c +++ b/src/wrapped/wrappedlibc.c @@ -3082,7 +3082,7 @@ EXPORT void* my_mmap64(x64emu_t* emu, void *addr, size_t length, int prot, int f if(emu) setProtection_mmap((uintptr_t)ret, length, prot); else - setProtection((uintptr_t)ret, length, prot); + setProtection_box((uintptr_t)ret, length, prot); if(addr && ret!=addr) e = EEXIST; } |