InflaterInputStream.java (read): Return zero when len is zero.
* java/util/zip/InflaterInputStream.java (read): Return zero when len is zero. From-SVN: r62872
This commit is contained in:
parent
42f86c4856
commit
530ee84d75
@ -1,3 +1,8 @@
|
||||
2003-02-13 Mark Wielaard <mark@klomp.org>
|
||||
|
||||
* java/util/zip/InflaterInputStream.java (read): Return zero when len
|
||||
is zero.
|
||||
|
||||
2003-02-13 Mark Wielaard <mark@klomp.org>
|
||||
|
||||
* java/io/BufferedOutputStream.java (write(int)): Only flush when
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* InflaterInputStream.java - Input stream filter for decompressing
|
||||
Copyright (C) 1999, 2000, 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 1999, 2000, 2002, 2003 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -90,6 +90,8 @@ public class InflaterInputStream extends FilterInputStream
|
||||
{
|
||||
if (inf == null)
|
||||
throw new IOException ("stream closed");
|
||||
if (len == 0)
|
||||
return 0;
|
||||
if (inf.finished())
|
||||
return -1;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user