Issue #243 Improved deobfuscation

This commit is contained in:
Jindra Petk
2013-07-18 09:37:21 +02:00
parent cbabf6f8ee
commit 42ec4fc7d7

View File

@@ -2113,7 +2113,7 @@ public class AVM2Code implements Serializable {
List<Integer> currentRefs = refs.get(currentIp);
if ((currentRefs != null) && (!currentRefs.isEmpty())) {
for (int i = 1; i < currentRefs.size(); i++) {
if (!isDirectAncestor(currentRefs.get(i), ancestor, refs)) {
if (!isDirectAncestor(currentRefs.get(i), ancestor, refs, visited)) {
return false;
}
}