- Fixed §§push after continue - should be before (usually on obfuscated code)

This commit is contained in:
Jindra Petřík
2018-05-27 18:41:33 +02:00
parent 0dea317d9f
commit d5069acb2c

View File

@@ -2544,6 +2544,9 @@ public class Graph {
if (commands.get(commands.size() - 1) instanceof BreakItem) {
clen--;
}
if (commands.get(commands.size() - 1) instanceof ContinueItem) {
clen--;
}
}
while (stack.size() > 0) {
GraphTargetItem p = stack.pop();