summaryrefslogtreecommitdiff
path: root/recipes/qemu/qemu-0.9.1+svn/fix_protection_bits.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/qemu/qemu-0.9.1+svn/fix_protection_bits.patch')
-rw-r--r--recipes/qemu/qemu-0.9.1+svn/fix_protection_bits.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/recipes/qemu/qemu-0.9.1+svn/fix_protection_bits.patch b/recipes/qemu/qemu-0.9.1+svn/fix_protection_bits.patch
deleted file mode 100644
index ee2b077602..0000000000
--- a/recipes/qemu/qemu-0.9.1+svn/fix_protection_bits.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-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;
-