Commit 00932ba3 authored by Ralf Baechle's avatar Ralf Baechle

[MIPS] Make PROT_WRITE imply PROT_READ.

parent fc095a90
...@@ -89,7 +89,7 @@ good_area: ...@@ -89,7 +89,7 @@ good_area:
if (!(vma->vm_flags & VM_WRITE)) if (!(vma->vm_flags & VM_WRITE))
goto bad_area; goto bad_area;
} else { } else {
if (!(vma->vm_flags & (VM_READ | VM_EXEC))) if (!(vma->vm_flags & (VM_READ | VM_WRITE | VM_EXEC)))
goto bad_area; goto bad_area;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment