Issue #242 AS3 deobfuscation fix

This commit is contained in:
Jindra Petk
2013-07-17 18:59:27 +02:00
parent 45203e6b33
commit b03d30f521

View File

@@ -2045,14 +2045,14 @@ public class AVM2Code implements Serializable {
}
List<Integer> r = refs.get(ip);
if (r != null) {
if (r.size() > 1) {
if (!stack.isEmpty()) {
GraphTargetItem it = stack.pop();
stack.push(new NotCompileTimeAVM2Item(null, it));
}
}
}
/*if (r != null) {
if (r.size() > 1) {
if (!stack.isEmpty()) {
GraphTargetItem it = stack.pop();
stack.push(new NotCompileTimeAVM2Item(null, it));
}
}
}*/
GraphSourceItem ins = code.get(ip);