kernel/vm: De-wrap line for clarity.
No functional change. Now it looks the same as the surrounding checks.
This commit is contained in:
parent
63664eaa21
commit
5c69be739e
@ -4743,8 +4743,7 @@ vm_soft_fault(VMAddressSpace* addressSpace, addr_t originalAddress,
|
||||
status = B_PERMISSION_DENIED;
|
||||
break;
|
||||
} else if (isExecute && (protection
|
||||
& (B_EXECUTE_AREA
|
||||
| (isUser ? 0 : B_KERNEL_EXECUTE_AREA))) == 0) {
|
||||
& (B_EXECUTE_AREA | (isUser ? 0 : B_KERNEL_EXECUTE_AREA))) == 0) {
|
||||
dprintf("instruction fetch attempted on execute-protected area 0x%"
|
||||
B_PRIx32 " at %p\n", area->id, (void*)originalAddress);
|
||||
TPF(PageFaultError(area->id,
|
||||
|
Loading…
Reference in New Issue
Block a user