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:
nganhkhoa 2020-06-30 17:13:42 +07:00
parent 8aade7db89
commit e0b5cd21a7

View File

@ -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;