Skip to content

Commit

Permalink
Add find2() method for derived classes
Browse files Browse the repository at this point in the history
  • Loading branch information
wtfsck committed Jul 31, 2012
1 parent 329efd9 commit dace82c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions de4dot.code/deobfuscators/ProxyCallFixerBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -391,6 +391,10 @@ public void find() {
return;

Log.v("Finding all proxy delegates");
find2();
}

protected void find2() {
foreach (var type in getDelegateTypes()) {
var cctor = DotNetUtils.getMethod(type, ".cctor");
if (cctor == null || !cctor.HasBody)
Expand Down

0 comments on commit dace82c

Please sign in to comment.