git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@443 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 26 years ago
parent 031543199d
commit 7c38ff13aa
  1. 2
      jode/jode/bytecode/CodeInfo.java

@ -48,7 +48,7 @@ public class CodeInfo extends BinaryInfo {
maxLocals = input.readUnsignedShort();
int codeLength = input.readInt();
code = new byte[codeLength];
input.read(code);
input.readFully(code);
int count = 4*input.readUnsignedShort();
exceptionTable = new int[count];
for (int i = 0; i< count; i+=4) {

Loading…
Cancel
Save