From b03d30f5214e3636aca74d8f10e59527bfcfa7ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=F8=EDk?= Date: Wed, 17 Jul 2013 18:59:27 +0200 Subject: [PATCH] Issue #242 AS3 deobfuscation fix --- .../decompiler/flash/abc/avm2/AVM2Code.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/trunk/src/com/jpexs/decompiler/flash/abc/avm2/AVM2Code.java b/trunk/src/com/jpexs/decompiler/flash/abc/avm2/AVM2Code.java index ac90b7915..369fd681a 100644 --- a/trunk/src/com/jpexs/decompiler/flash/abc/avm2/AVM2Code.java +++ b/trunk/src/com/jpexs/decompiler/flash/abc/avm2/AVM2Code.java @@ -2045,14 +2045,14 @@ public class AVM2Code implements Serializable { } List 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);