Commit e5550355 by Per Bothner Committed by Per Bothner

ZipOutputStream.java (putNextEntry): Clear uncompressed_size in readiness for next entry.

	* java/util/zip/ZipOutputStream.java (putNextEntry):  Clear
	uncompressed_size in readiness for next entry.

From-SVN: r49014
parent eab854f6
2002-01-19 Per Bothner <per@bothner.com>
* java/util/zip/ZipOutputStream.java (putNextEntry): Clear
uncompressed_size in readiness for next entry.
2002-01-18 Tom Tromey <tromey@redhat.com>
* java/net/natPlainSocketImpl.cc: Include
......
......@@ -237,6 +237,7 @@ public class ZipOutputStream extends DeflaterOutputStream
def.reset();
def.setLevel(compr);
sum.reset();
uncompressed_size = 0;
}
public void setLevel (int level)
......
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