Issue #57 Unknown instruction exception now ignored

This commit is contained in:
Jindra Petk
2013-04-06 18:15:13 +02:00
parent 22d7ce80be
commit 0a25bc32bf

View File

@@ -633,7 +633,8 @@ public class AVM2Code implements Serializable {
code.add(new AVM2Instruction(startOffset, instr, actualOperands, ais.stopBuffer()));
} else {
throw new UnknownInstructionCode(instructionCode);
break; // Unknown instructions are ignored (Some of the obfuscators add unknown instructions)
//throw new UnknownInstructionCode(instructionCode);
}
}
}