[kaffe] CVS kaffe (robilad): Resynced with GNU Classpath: GZipInputStream fix
Kaffe CVS
cvs-commits at kaffe.org
Mon Mar 21 09:49:56 PST 2005
PatchSet 5584
Date: 2005/03/21 17:43:49
Author: robilad
Branch: HEAD
Tag: (none)
Log:
Resynced with GNU Classpath: GZipInputStream fix
2005-03-21 Dalibor Topic <robilad at kaffe.org>
Resynced with GNU Classpath.
2005-03-18 Sven de Marothy <sven at physto.se>
* java/util/zip/GZIPInputStream.java:
(GZIPInputStream): Read header in constructor.
Members:
ChangeLog:1.3758->1.3759
libraries/javalib/java/util/zip/GZIPInputStream.java:1.14->1.15
Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.3758 kaffe/ChangeLog:1.3759
--- kaffe/ChangeLog:1.3758 Mon Mar 21 17:25:27 2005
+++ kaffe/ChangeLog Mon Mar 21 17:43:49 2005
@@ -2,6 +2,15 @@
Resynced with GNU Classpath.
+ 2005-03-18 Sven de Marothy <sven at physto.se>
+
+ * java/util/zip/GZIPInputStream.java:
+ (GZIPInputStream): Read header in constructor.
+
+2005-03-21 Dalibor Topic <robilad at kaffe.org>
+
+ Resynced with GNU Classpath.
+
2005-03-18 Andrew John Hughes <gnu_andrew at member.fsf.org>
* gnu/javax/swing/text/html/parser/htmlAttributeSet.java:
Index: kaffe/libraries/javalib/java/util/zip/GZIPInputStream.java
diff -u kaffe/libraries/javalib/java/util/zip/GZIPInputStream.java:1.14 kaffe/libraries/javalib/java/util/zip/GZIPInputStream.java:1.15
--- kaffe/libraries/javalib/java/util/zip/GZIPInputStream.java:1.14 Sat Oct 23 11:24:22 2004
+++ kaffe/libraries/javalib/java/util/zip/GZIPInputStream.java Mon Mar 21 17:43:53 2005
@@ -128,6 +128,7 @@
{
super(in, new Inflater(true), size);
crc = new CRC32();
+ readHeader();
}
/**
More information about the kaffe
mailing list