Commit 34043bd2 by Tom Tromey Committed by Tom Tromey

InflaterInputStream.java (read): Throw ZipException if inflater throws a DataFormatException.

	* java/util/zip/InflaterInputStream.java (read): Throw
	ZipException if inflater throws a DataFormatException.

From-SVN: r27719
parent d71ef9d4
1999-06-23 Tom Tromey <tromey@cygnus.com>
* java/util/zip/InflaterInputStream.java (read): Throw
ZipException if inflater throws a DataFormatException.
1999-06-23 Warren Levy <warrenl@cygnus.com>
* java/net/DatagramSocketImpl.java (localPort): Fixed typo to match JDK.
......
......@@ -67,7 +67,14 @@ public class InflaterInputStream extends FilterInputStream
fill ();
if (inf.needsDictionary())
return -1;
return inf.inflate(buf, off, len);
try
{
return inf.inflate(buf, off, len);
}
catch (DataFormatException dfe)
{
throw new ZipException (dfe.getMessage());
}
}
public long skip (long n) throws IOException
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment