diff options
Diffstat (limited to 'KMemDriver/Memory.c')
-rw-r--r-- | KMemDriver/Memory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/KMemDriver/Memory.c b/KMemDriver/Memory.c index d9c46e7..9a064c3 100644 --- a/KMemDriver/Memory.c +++ b/KMemDriver/Memory.c @@ -290,7 +290,7 @@ NTSTATUS AllocMemoryToProcess(IN PEPROCESS pep, IN OUT PVOID *baseAddr, IN OUT S return STATUS_UNSUCCESSFUL; } KeStackAttachProcess((PRKPROCESS)pep, apc); - status = ZwAllocateVirtualMemory(ZwCurrentProcess(), baseAddr, 0, outSize, MEM_COMMIT, protect); + status = ZwAllocateVirtualMemory(ZwCurrentProcess(), baseAddr, 0, outSize, MEM_COMMIT /* | MEM_RESERVE */, protect); if (!NT_SUCCESS(status)) { KDBG("ZwAllocateVirtualMemory failed with 0x%X\n", status); } |