mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 01:24:38 +00:00
Raise the exception in MmProbeAndLockPages always with STATUS_ACCESS_VIOLATION.
svn path=/trunk/; revision=14420
This commit is contained in:
parent
4ea628ccaa
commit
de83dfa5b8
1 changed files with 2 additions and 2 deletions
|
@ -437,7 +437,7 @@ VOID STDCALL MmProbeAndLockPages (PMDL Mdl,
|
|||
}
|
||||
}
|
||||
MmUnlockAddressSpace(AddressSpace);
|
||||
ExRaiseStatus(Status);
|
||||
ExRaiseStatus(STATUS_ACCESS_VIOLATION);
|
||||
}
|
||||
}
|
||||
else
|
||||
|
@ -461,7 +461,7 @@ VOID STDCALL MmProbeAndLockPages (PMDL Mdl,
|
|||
}
|
||||
}
|
||||
MmUnlockAddressSpace(AddressSpace);
|
||||
ExRaiseStatus(Status);
|
||||
ExRaiseStatus(STATUS_ACCESS_VIOLATION);
|
||||
}
|
||||
}
|
||||
Page = MmGetPfnForProcess(NULL, Address);
|
||||
|
|
Loading…
Reference in a new issue