From 8cbd08227c7282ddf29232e00c8472418dccd1ce Mon Sep 17 00:00:00 2001 From: Jackkal Date: Thu, 26 Mar 2015 21:31:01 +0100 Subject: [PATCH] Fix ActionEnumerate2 - Null should be considered part of EnumerateActionItem, no need to push it on the stack --- .../jpexs/decompiler/flash/action/swf6/ActionEnumerate2.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/swf6/ActionEnumerate2.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/swf6/ActionEnumerate2.java index 2e707babc..bb57235d1 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/swf6/ActionEnumerate2.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/swf6/ActionEnumerate2.java @@ -12,7 +12,8 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library. */ + * License along with this library. + */ package com.jpexs.decompiler.flash.action.swf6; import com.jpexs.decompiler.flash.action.Action; @@ -39,7 +40,6 @@ public class ActionEnumerate2 extends Action { @Override public void translate(TranslateStack stack, List output, HashMap regNames, HashMap variables, HashMap functions, int staticOperation, String path) { GraphTargetItem object = stack.pop(); - stack.push(new DirectValueActionItem(null, 0, new Null(), new ArrayList())); stack.push(new EnumerateActionItem(this, object)); } }