mirror of
https://github.com/hardkernel/linux.git
synced 2026-05-31 16:26:41 +09:00
[MIPS] Make PROT_WRITE imply PROT_READ.
This commit is contained in:
@@ -89,7 +89,7 @@ good_area:
|
||||
if (!(vma->vm_flags & VM_WRITE))
|
||||
goto bad_area;
|
||||
} else {
|
||||
if (!(vma->vm_flags & (VM_READ | VM_EXEC)))
|
||||
if (!(vma->vm_flags & (VM_READ | VM_WRITE | VM_EXEC)))
|
||||
goto bad_area;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user