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
This commit is contained in:
parent
8aade7db89
commit
e0b5cd21a7
@ -347,7 +347,7 @@ scanRemote(ULONG64 startAddress, ULONG64 endAddress, ULONG tag) {
|
|||||||
|
|
||||||
toPoolHeader(&p, (PVOID)currentAddr);
|
toPoolHeader(&p, (PVOID)currentAddr);
|
||||||
if (p.poolType != 2) continue;
|
if (p.poolType != 2) continue;
|
||||||
if (!validTag(&p)) continue;
|
// if (!validTag(&p)) continue;
|
||||||
if (p.tag != tag)
|
if (p.tag != tag)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user