From e0b5cd21a7418fd092b27e32d240dc9c79164c41 Mon Sep 17 00:00:00 2001 From: nganhkhoa Date: Tue, 30 Jun 2020 17:13:42 +0700 Subject: [PATCH] Fix valid tag check Tag in Windows below 8 has \xeX and because we check for tag value so a check for tag is not needed --- lpus/Driver.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lpus/Driver.cpp b/lpus/Driver.cpp index 0951fc5..02e23c5 100644 --- a/lpus/Driver.cpp +++ b/lpus/Driver.cpp @@ -347,7 +347,7 @@ scanRemote(ULONG64 startAddress, ULONG64 endAddress, ULONG tag) { toPoolHeader(&p, (PVOID)currentAddr); if (p.poolType != 2) continue; - if (!validTag(&p)) continue; + // if (!validTag(&p)) continue; if (p.tag != tag) continue;