[NTOSKRNL:MM]

- Ignore the unsupported MEM_TOP_DOWN flag instead of failing NtAllocateVirtualMemory
CORE-6392 CORE-6805 #comment MEM_TOP_DOWN should be sufficiently fixed in r58266, and setup now starts. Please confirm.

svn path=/trunk/; revision=58266
This commit is contained in:
Thomas Faber 2013-02-02 13:27:49 +00:00
parent ffc5070e19
commit 0ce19565ed

View file

@ -3856,8 +3856,7 @@ NtAllocateVirtualMemory(IN HANDLE ProcessHandle,
if ((AllocationType & MEM_TOP_DOWN) == MEM_TOP_DOWN)
{
DPRINT1("MEM_TOP_DOWN not supported\n");
Status = STATUS_INVALID_PARAMETER;
goto FailPathNoLock;
AllocationType &= ~MEM_TOP_DOWN;
}
if ((AllocationType & MEM_RESET) == MEM_RESET)
{