In File: ZipFile.java
Package: java.util.zip
Class: ZipFileInputStream
Methods: available() and read(...)
The code for calulating the avalable bytes in the stream is incorrect.
It is currently:
available():
317: return (int)Math.max(count, Integer.MAX_VALUE);
which will always return MAX_VALUE. Math.min() should be called instead
of Math.max().
read(...):
338: len = (int)Math.max(count, Integer.MAX_VALUE);
should also call Math.min instead.