AS1/2 better deobfuscation

This commit is contained in:
Jindra Petk
2013-03-10 13:57:31 +01:00
parent 4c1485808f
commit c9fe445372
58 changed files with 202 additions and 210 deletions

View File

@@ -36,7 +36,9 @@ public abstract class GraphSource {
if (ins.isBranch() || ins.isJump()) {
List<Integer> branches = ins.getBranches(this);
for (int b : branches) {
visitCode(b, ip, refs);
if (b >= 0) {
visitCode(b, ip, refs);
}
}
break;
}