Restore MaxStack

This commit is contained in:
de4dot 2012-08-21 20:17:35 +02:00
parent 58b1b27c69
commit f1a725cd19

View File

@ -114,5 +114,10 @@ namespace de4dot.code.deobfuscators.CryptoObfuscator {
return eh;
}
public override void restoreMethod(MethodDefinition method) {
base.restoreMethod(method);
method.Body.MaxStackSize = maxStackSize;
}
}
}