mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +00:00
Herve Poussineau <[email protected]>
Use MmGetSystemAddressForMdlSafe instead of MmGetSystemAddressForMdl. svn path=/trunk/; revision=12962
This commit is contained in:
@@ -218,7 +218,9 @@ PVOID VfatGetUserBuffer(IN PIRP Irp)
|
||||
|
||||
if (Irp->MdlAddress)
|
||||
{
|
||||
return MmGetSystemAddressForMdl(Irp->MdlAddress);
|
||||
/* This call may be in the paging path, so use maximum priority */
|
||||
/* FIXME: call with normal priority in the non-paging path */
|
||||
return MmGetSystemAddressForMdlSafe(Irp->MdlAddress, HighPagePriority);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user