diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/deobfuscation/ActionDeobfuscator.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/deobfuscation/ActionDeobfuscator.java index 65f135056..926fd29b9 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/deobfuscation/ActionDeobfuscator.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/deobfuscation/ActionDeobfuscator.java @@ -196,7 +196,7 @@ public class ActionDeobfuscator extends SWFDecompilerAdapter { actions.removeZeroJumps(); ActionConstantPool cPool = getConstantPool(actions); - LocalDataArea localData = new LocalDataArea(new Stage(), true); + LocalDataArea localData = new LocalDataArea(new Stage(null), true); localData.stack = new FixItemCounterStack(); ExecutionResult result = new ExecutionResult(); FastActionListIterator iterator = actions.iterator(); @@ -383,7 +383,7 @@ public class ActionDeobfuscator extends SWFDecompilerAdapter { Map results = new HashMap<>(); - LocalDataArea localData = new LocalDataArea(new Stage()); + LocalDataArea localData = new LocalDataArea(new Stage(null)); localData.stack = new FixItemCounterStack(); ExecutionResult result = new ExecutionResult(); for (ActionItem actionItem : actions) {