Don't remove string decrypter types if there was an error decrypting strings

This commit is contained in:
de4dot 2012-02-18 07:58:52 +01:00
parent 2c969446b0
commit e18ff9aea1

View File

@ -516,6 +516,8 @@ namespace de4dot.code.deobfuscators.SmartAssembly {
}
bool canRemoveStringDecrypterStuff() {
if (!staticStringInliner.InlinedAllCalls)
return false;
return Operations.DecryptStrings != OpDecryptString.None;
}