[+] (NT preload symbols) Missing obvious fast path under Aurora::IsBlocked
This commit is contained in:
parent
513a7aec7e
commit
7324a59e5b
@ -58,10 +58,16 @@ namespace Aurora
|
||||
|
||||
for (AU_ITERATE_N(i, AuArraySize(gBlockedDLLTable)))
|
||||
{
|
||||
if (gBlockedDLLTable[i] == uHash)
|
||||
auto uCurrent = gBlockedDLLTable[i];
|
||||
|
||||
if (uCurrent == uHash)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else if (uCurrent == 0)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
|
Loading…
Reference in New Issue
Block a user