generic-poky/meta/packages/qemu/qemu-0.9.1+svn/fix_protection_bits.patch
Richard Purdie 0e1fe2007d qemu: Add two qemu usermode fixes
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4331 311d38ba-8fff-0310-9ca6-ca027cbcb966
2008-04-24 16:54:09 +00:00

15 lines
513 B
Diff

Index: qemu-0.9.1/linux-user/mmap.c
===================================================================
--- qemu-0.9.1.orig/linux-user/mmap.c 2008-04-16 14:10:26.000000000 +0100
+++ qemu-0.9.1/linux-user/mmap.c 2008-04-16 14:10:51.000000000 +0100
@@ -49,8 +49,7 @@
end = start + len;
if (end < start)
return -EINVAL;
- if (prot & ~(PROT_READ | PROT_WRITE | PROT_EXEC))
- return -EINVAL;
+ prot = prot & (PROT_READ | PROT_WRITE | PROT_EXEC);
if (len == 0)
return 0;