From a1de3e633b9d11a435a5bae7f2d72b5936717328 Mon Sep 17 00:00:00 2001 From: Art Yerkes Date: Wed, 21 Mar 2012 10:18:39 +0000 Subject: [PATCH] [NTOSKRNL] Fix another place where a non-rounded address is used. svn path=/trunk/; revision=56202 --- reactos/ntoskrnl/mm/section.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/ntoskrnl/mm/section.c b/reactos/ntoskrnl/mm/section.c index 4bb8d6db328..bc3533f4151 100644 --- a/reactos/ntoskrnl/mm/section.c +++ b/reactos/ntoskrnl/mm/section.c @@ -1431,7 +1431,7 @@ MmNotPresentFaultSectionView(PMMSUPPORT AddressSpace, } MmLockAddressSpace(AddressSpace); Status = MmCreateVirtualMapping(Process, - Address, + PAddress, Region->Protect, &Page, 1);