Issue #50 AS1/2 function body deobfuscation bug

This commit is contained in:
Jindra Petk
2013-03-31 19:26:37 +02:00
parent be106cc34b
commit 3472cc79d2
30 changed files with 474 additions and 821 deletions

View File

@@ -1314,6 +1314,10 @@ public class Graph {
ip = checkIp(ip);
lastIp = ip;
GraphSourceItem ins = code.get(ip);
if (ins.isIgnored()) {
ip++;
continue;
}
if (ins.isExit()) {
part.end = ip;
allBlocks.add(part);