mirror of
https://github.com/moparisthebest/fernflower
synced 2024-10-31 15:35:08 -04:00
Fixing migration errors: stream.read() doesn't read the entire available stream. It has to be called in a loop or replaced with readFully().
This commit is contained in:
parent
a4054817d2
commit
f875d27e6e
@ -70,14 +70,21 @@ public class InterpreterUtil {
|
||||
}
|
||||
|
||||
private static byte[] readAndClose(InputStream stream, long length) throws IOException {
|
||||
|
||||
try {
|
||||
byte[] bytes = new byte[(int) length];
|
||||
if (stream.read(bytes) != length) {
|
||||
throw new IOException("premature end of stream");
|
||||
DataInputStream dataStream = new DataInputStream(stream);
|
||||
|
||||
try {
|
||||
dataStream.readFully(bytes);
|
||||
} catch (EOFException ex) {
|
||||
throw new IOException("premature end of stream", ex);
|
||||
} finally {
|
||||
dataStream.close();
|
||||
}
|
||||
|
||||
return bytes;
|
||||
}
|
||||
finally {
|
||||
} finally {
|
||||
stream.close();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user