mirror of
https://github.com/accelerator74/Cleaner.git
synced 2025-12-07 10:38:27 +00:00
Correct string used in alternate clean check.
This commit is contained in:
parent
2b6ff9c2b1
commit
e69bc73572
@ -36,7 +36,7 @@ vector<string> szStrings;
|
||||
{
|
||||
// make sure we're stripping at least 2 or more chars just in case we accidentally inhale a \0
|
||||
// also there's no reason to strip a single char ever
|
||||
if (szStrings[i].length() >= 2 && szStrings[i].find(pMessage) != string::npos)
|
||||
if (szStrings[i].length() >= 2 && szStrings[i].find(text) != string::npos)
|
||||
{
|
||||
return SPEW_CONTINUE;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user