Posted August 17, 201015 yr Open "Mono.Cecil.Cil/CodeWriter.cs"Find "ComputeMaxStack"Add this line above it "if (!CodeWriter.FixedMaxStack)"Add field to the CodeWriter class "public static bool FixedMaxStack = false;"CodeWriter.FixedMaxStack = true;Reason for this patch is because otherwise Cecil will attempt to recompute the MaxStacks. It does not work on obfuscated code. For example ldc_i4 0 ldc_i4 0 ldc_i4 0 ldc_i4 0 br lb2lb1: retlb2: ldc_i4 0 ldc_i4 0 ldc_i4 0 ldc_i4 0 br lb1Cecil will compute it as 5 when it really is 8. Causing a stack overflow (InvalidProgramException) when it runs.
September 11, 201014 yr thx 4 info...but i cant find ComputeMaxStack in recent SVN checkout of the CodeWriter.cs Edited September 12, 201014 yr by sirp
Create an account or sign in to comment