mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-16 01:02:25 +00:00
Fixed: [#2394] Broken deobfuscation on incorrect length of ActionStrictMode
Fixed: [#2394] ActionStrictMode with mode larger than 1 now ignored
This commit is contained in:
@@ -1942,7 +1942,7 @@ public class SWFInputStream implements AutoCloseable {
|
||||
case 0x2D:
|
||||
return new ActionFSCommand2(getCharset());
|
||||
case 0x89:
|
||||
return new ActionStrictMode(this);
|
||||
return new ActionStrictMode(actionLength, this);
|
||||
// SWF3 Actions
|
||||
case 0x81:
|
||||
return new ActionGotoFrame(actionLength, this);
|
||||
|
||||
Reference in New Issue
Block a user