From: Chen Gang Date: Wed, 30 Dec 2015 01:10:54 +0000 (+0800) Subject: linux-user/mmap.c: Always zero MAP_ANONYMOUS memory in mmap_frag() X-Git-Tag: v2.6.0-rc0~232^2~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e6deac9cf99e013a3e253aff2332836c86d8a52c;p=thirdparty%2Fqemu.git linux-user/mmap.c: Always zero MAP_ANONYMOUS memory in mmap_frag() When mapping MAP_ANONYMOUS memory fragments, still need notice about to set it zero, or it will cause issues. Signed-off-by: Chen Gang Reviewed-by: Laurent Vivier Signed-off-by: Riku Voipio --- diff --git a/linux-user/mmap.c b/linux-user/mmap.c index 7b459d5100c..c6c478e552d 100644 --- a/linux-user/mmap.c +++ b/linux-user/mmap.c @@ -186,10 +186,12 @@ static int mmap_frag(abi_ulong real_start, if (prot_new != (prot1 | PROT_WRITE)) mprotect(host_start, qemu_host_page_size, prot_new); } else { - /* just update the protection */ if (prot_new != prot1) { mprotect(host_start, qemu_host_page_size, prot_new); } + if (prot_new & PROT_WRITE) { + memset(g2h(start), 0, end - start); + } } return 0; }