bug fixes (wide opcodes)

git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@333 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 26 years ago
parent f898ee7d0b
commit 4822e259cf
  1. 2
      jode/jode/obfuscator/MethodIdentifier.java

@ -95,6 +95,7 @@ public class MethodIdentifier extends Identifier implements Opcodes {
default:
throw new ClassFormatError("Invalid wide opcode "+opcode);
}
break;
}
case opc_ret:
stream.skip(1);
@ -593,6 +594,7 @@ public class MethodIdentifier extends Identifier implements Opcodes {
default:
throw new ClassFormatError("Invalid wide opcode "+opcode);
}
break;
}
case opc_tableswitch: {
int length = 7-(addr % 4);

Loading…
Cancel
Save