Use NonPagedPool in EngAllocMem for now

svn path=/trunk/; revision=1099
This commit is contained in:
Jason Filby 2000-04-02 12:44:57 +00:00
parent 49f35db9e8
commit b8d0ffaf38

View file

@ -15,7 +15,7 @@ PVOID STDCALL EngAllocMem(ULONG Flags, ULONG MemSize, ULONG Tag)
{
PVOID newMem;
newMem = ExAllocatePoolWithTag(PagedPool, MemSize, Tag);
newMem = ExAllocatePoolWithTag(NonPagedPool, MemSize, Tag); // FIXME: Use PagedPool when it is implemented
if(Flags == FL_ZERO_MEMORY)
{