Add support for JarEntries with an unknown size

master
Graham 4 years ago
parent eba49fc889
commit 1af803ff00
  1. 9
      src/main/java/org/apache/harmony/pack200/PackingUtils.java

@ -206,7 +206,14 @@ public class PackingUtils {
// TODO: Should probably allow this
throw new RuntimeException("Large Class!");
} else if (size < 0) {
size = 0;
byte[] temp = new byte[4096];
try (ByteArrayOutputStream out = new ByteArrayOutputStream()) {
int len;
while ((len = inputStream.read(temp, 0, temp.length)) != -1) {
out.write(temp, 0, len);
}
return out.toByteArray();
}
}
byte[] bytes = new byte[(int) size];
if (inputStream.read(bytes) != size) {

Loading…
Cancel
Save