mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-25 06:14:00 +08:00
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
This commit is contained in:
parent
eab854f689
commit
e5550355c8
@ -1,3 +1,8 @@
|
||||
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)
|
||||
|
Loading…
Reference in New Issue
Block a user