From f8b475eabf90673553cad1c582af96ca8a257d69 Mon Sep 17 00:00:00 2001 From: jochen Date: Fri, 15 Jan 1999 10:58:44 +0000 Subject: [PATCH] bug fix git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@152 379699f6-c40d-0410-875b-85095c16579e --- jode/jode/bytecode/AttributeInfo.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jode/jode/bytecode/AttributeInfo.java b/jode/jode/bytecode/AttributeInfo.java index ecaab77..f4b24f8 100644 --- a/jode/jode/bytecode/AttributeInfo.java +++ b/jode/jode/bytecode/AttributeInfo.java @@ -37,7 +37,7 @@ public class AttributeInfo { if ((howMuch & ClassInfo.ALL_ATTRIBUTES) != 0) { name = attrName; data = new byte[length]; - input.read(data); + input.readFully(data); } else input.skip(length); }