mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 04:13:32 +00:00
More fixes
svn path=/trunk/; revision=2437
This commit is contained in:
@@ -219,7 +219,6 @@ PVOID MmInitializePageList(PVOID FirstPhysKernelAddress,
|
||||
{
|
||||
ULONG i;
|
||||
ULONG Reserved;
|
||||
ULONG ReservedGap;
|
||||
NTSTATUS Status;
|
||||
|
||||
DPRINT("MmInitializePageList(FirstPhysKernelAddress %x, "
|
||||
@@ -243,7 +242,7 @@ PVOID MmInitializePageList(PVOID FirstPhysKernelAddress,
|
||||
DPRINT("Reserved %d\n", Reserved);
|
||||
|
||||
LastKernelAddress = PAGE_ROUND_UP(LastKernelAddress);
|
||||
LastKernelAddress = ((ULONG)LastKernelAddress + (ReservedGap * PAGESIZE));
|
||||
LastKernelAddress = ((ULONG)LastKernelAddress + (Reserved * PAGESIZE));
|
||||
LastPhysKernelAddress = (PVOID)PAGE_ROUND_UP(LastPhysKernelAddress);
|
||||
LastPhysKernelAddress = LastPhysKernelAddress + (Reserved * PAGESIZE);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user