Call Dispose() after decrypting methods

This commit is contained in:
de4dot 2012-01-14 11:46:00 +01:00
parent 75c8747a0f
commit ed918c6993

View File

@ -164,6 +164,9 @@ namespace de4dot.code.deobfuscators.Babel_NET {
}
if (numNonDecryptedMethods > 0)
Log.w("{0}/{1} methods not decrypted", numNonDecryptedMethods, totalEncryptedMethods);
foreach (var imageReader in imageReaders.Values)
imageReader.Dispose();
}
List<EncryptInfo> getEncryptedMethods() {