mirror of
https://github.com/reactos/reactos.git
synced 2025-04-21 12:40:33 +00:00
[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:
parent
ffc5070e19
commit
0ce19565ed
1 changed files with 1 additions and 2 deletions
|
@ -3856,8 +3856,7 @@ NtAllocateVirtualMemory(IN HANDLE ProcessHandle,
|
||||||
if ((AllocationType & MEM_TOP_DOWN) == MEM_TOP_DOWN)
|
if ((AllocationType & MEM_TOP_DOWN) == MEM_TOP_DOWN)
|
||||||
{
|
{
|
||||||
DPRINT1("MEM_TOP_DOWN not supported\n");
|
DPRINT1("MEM_TOP_DOWN not supported\n");
|
||||||
Status = STATUS_INVALID_PARAMETER;
|
AllocationType &= ~MEM_TOP_DOWN;
|
||||||
goto FailPathNoLock;
|
|
||||||
}
|
}
|
||||||
if ((AllocationType & MEM_RESET) == MEM_RESET)
|
if ((AllocationType & MEM_RESET) == MEM_RESET)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue