mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-02 20:04:37 +00:00
#887 error on export a special swf's P-CODE
This commit is contained in:
@@ -207,11 +207,12 @@ public class AVM2Instruction implements Cloneable, GraphSourceItem {
|
||||
s.append("\"");*/
|
||||
break;
|
||||
case AVM2Code.DAT_STRING_INDEX:
|
||||
if (operands[i] == 0) {
|
||||
String str;
|
||||
if (operands[i] == 0 || (str = constants.getString(operands[i])) == null) {
|
||||
s.append(" null");
|
||||
} else {
|
||||
s.append(" \"");
|
||||
s.append(Helper.escapeActionScriptString(constants.getString(operands[i])));
|
||||
s.append(Helper.escapeActionScriptString(str));
|
||||
s.append("\"");
|
||||
}
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user