aboutsummaryrefslogtreecommitdiff
path: root/MemDriverLib
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 /MemDriverLib
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 'MemDriverLib')
-rw-r--r--MemDriverLib/MemDriverLib.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/MemDriverLib/MemDriverLib.cpp b/MemDriverLib/MemDriverLib.cpp
index 0c985c3..e1d56d1 100644
--- a/MemDriverLib/MemDriverLib.cpp
+++ b/MemDriverLib/MemDriverLib.cpp
@@ -212,7 +212,7 @@ bool KInterface::VAlloc(HANDLE targetPID, PVOID *address, SIZE_T *size, ULONG pr
if (SendRecvWait(MEM_VALLOC) == SRR_SIGNALED) {
m_last_ntstatus = vr->StatusRes;
if (vr->StatusRes ||
- vr->SizeRes != *size)
+ vr->SizeRes < *size)
{
std::stringstream err_str;
err_str << "Call VAlloc(0x" << std::hex << *address