Author: tkreuzer
Date: Tue Nov 10 01:48:09 2009
New Revision: 44065
URL:
http://svn.reactos.org/svn/reactos?rev=44065&view=rev
Log:
Use LoaderMemoryData instead of LoaderSpecialMemory for page tables
Modified:
branches/ros-amd64-bringup/reactos/boot/freeldr/freeldr/windows/amd64/wlmemory.c
Modified:
branches/ros-amd64-bringup/reactos/boot/freeldr/freeldr/windows/amd64/wlmemory.c
URL:
http://svn.reactos.org/svn/reactos/branches/ros-amd64-bringup/reactos/boot/…
==============================================================================
--- branches/ros-amd64-bringup/reactos/boot/freeldr/freeldr/windows/amd64/wlmemory.c
[iso-8859-1] (original)
+++ branches/ros-amd64-bringup/reactos/boot/freeldr/freeldr/windows/amd64/wlmemory.c
[iso-8859-1] Tue Nov 10 01:48:09 2009
@@ -80,7 +80,7 @@
if (!pDir->Pde[Index].Valid)
{
- pSubDir = MmAllocateMemoryWithType(PAGE_SIZE, LoaderSpecialMemory);
+ pSubDir = MmAllocateMemoryWithType(PAGE_SIZE, LoaderMemoryData);
if (!pSubDir)
return NULL;
RtlZeroMemory(pSubDir, PAGE_SIZE);