aboutsummaryrefslogtreecommitdiff
path: root/KMemDriver
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2019-11-10 15:09:08 +0100
committerToni Uhlig <matzeton@googlemail.com>2019-11-10 15:09:08 +0100
commitf5f76e4b191e393dfcdffe06a13d4aafe6e45f7f (patch)
tree14f30d4207ee4308408b0646d54645f85685601f /KMemDriver
parentd85764ba937792c7aa95265472c563c9ea5fd743 (diff)
added MEM_RESERVE as comment, needs to be verified if it is required for a stable VAD Unlink
Diffstat (limited to 'KMemDriver')
-rw-r--r--KMemDriver/Memory.c2
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);
}