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
This commit is contained in:
parent
d71ef9d4a6
commit
34043bd2e9
2 changed files with 13 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue