aboutsummaryrefslogtreecommitdiff
path: root/KMemDriver
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2019-09-21 20:00:17 +0200
committerToni Uhlig <matzeton@googlemail.com>2019-09-21 20:00:17 +0200
commit620c880bfaf495ed4f5a9d505d5721208855396c (patch)
tree65014564b3d5e01195713de120f9f29b6f91a507 /KMemDriver
parentf069b7afbc6f9c7daed8f69642f9054d86f774e6 (diff)
do not rely on the exact size during VALLOC and do not manually calculate the page size (which was done wrong) since it is done by the OS
Diffstat (limited to 'KMemDriver')
-rw-r--r--KMemDriver/Memory.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/KMemDriver/Memory.c b/KMemDriver/Memory.c
index 7a571ea..d9c46e7 100644
--- a/KMemDriver/Memory.c
+++ b/KMemDriver/Memory.c
@@ -289,7 +289,6 @@ NTSTATUS AllocMemoryToProcess(IN PEPROCESS pep, IN OUT PVOID *baseAddr, IN OUT S
if (!apc) {
return STATUS_UNSUCCESSFUL;
}
- *outSize = ADDRESS_AND_SIZE_TO_SPAN_PAGES(*baseAddr, 4096);
KeStackAttachProcess((PRKPROCESS)pep, apc);
status = ZwAllocateVirtualMemory(ZwCurrentProcess(), baseAddr, 0, outSize, MEM_COMMIT, protect);
if (!NT_SUCCESS(status)) {