From db45aaa6918235ba9f7ad694a0dbbcde4c303d4b Mon Sep 17 00:00:00 2001 From: Bryce McKinlay Date: Wed, 29 Nov 2000 10:37:40 +0000 Subject: [PATCH] Check this.len, not len, when determining if there is no more input data. From-SVN: r37847 --- libjava/java/util/zip/InflaterInputStream.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libjava/java/util/zip/InflaterInputStream.java b/libjava/java/util/zip/InflaterInputStream.java index d7459eb100d..e712d19aa85 100644 --- a/libjava/java/util/zip/InflaterInputStream.java +++ b/libjava/java/util/zip/InflaterInputStream.java @@ -89,7 +89,7 @@ public class InflaterInputStream extends FilterInputStream count = inf.inflate(buf, off, len); if (count == 0) { - if (len == -1) + if (this.len == -1) return -1; // Couldn't get any more data to feed to the Inflater if (inf.needsDictionary()) throw new ZipException ("Inflater needs Dictionary"); -- 2.30.2