mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-16 06:11:54 +00:00
AS1/2 ignoring unknown opcodes
This commit is contained in:
@@ -1413,10 +1413,14 @@ public class SWFInputStream extends InputStream {
|
||||
return new ActionThrow();
|
||||
default:
|
||||
if (actionLength > 0) {
|
||||
skip(actionLength);
|
||||
//skip(actionLength);
|
||||
}
|
||||
throw new UnknownActionException(actionCode);
|
||||
//return new Action(actionCode, actionLength);
|
||||
//throw new UnknownActionException(actionCode);
|
||||
Action r=new ActionNop();
|
||||
r.actionCode=actionCode;
|
||||
r.actionLength = actionLength;
|
||||
return r;
|
||||
//return new Action(actionCode, actionLength);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user