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:
Mark Wielaard 2003-02-13 23:15:20 +00:00 committed by Mark Wielaard
parent 42f86c4856
commit 530ee84d75
2 changed files with 8 additions and 1 deletions

View File

@ -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

View File

@ -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;