/hg/release/icedtea6-1.9: Fix rhbz#560193

dbhole at icedtea.classpath.org dbhole at icedtea.classpath.org
Fri Aug 27 11:53:48 PDT 2010


changeset 490708229ca2 in /hg/release/icedtea6-1.9
details: http://icedtea.classpath.org/hg/release/icedtea6-1.9?cmd=changeset;node=490708229ca2
author: Deepak Bhole <dbhole at redhat.com>
date: Fri Aug 27 14:50:02 2010 -0400

	Fix rhbz#560193

	Process nested jars in applet code only if size > 0 bytes.


diffstat:

3 files changed, 16 insertions(+)
ChangeLog                                              |    7 +++++++
NEWS                                                   |    2 ++
netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java |    7 +++++++

diffs (53 lines):

diff -r adf4b68ed6af -r 490708229ca2 ChangeLog
--- a/ChangeLog	Thu Aug 26 11:14:01 2010 +0200
+++ b/ChangeLog	Fri Aug 27 14:50:02 2010 -0400
@@ -164,6 +164,13 @@ 2010-08-02  Andrew John Hughes  <ahughes
 	* patches/fonts-gentoo.patch:
 	Add a font configuration for Gentoo
 	(currently a copy of Fedora's).
+
+2010-08-27  Deepak Bhole <dbhole at redhat.com>
+
+	Fixes rhbz#560193
+	* netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java
+	(activateJars): Process nested jar only if size > 0 bytes.
+	* NEWS: Updated.
 
 2010-07-30  Andrew John Hughes  <ahughes at redhat.com>
 
diff -r adf4b68ed6af -r 490708229ca2 NEWS
--- a/NEWS	Thu Aug 26 11:14:01 2010 +0200
+++ b/NEWS	Fri Aug 27 14:50:02 2010 -0400
@@ -722,6 +722,8 @@ New in release 1.9 (2010-XX-XX):
   - Run programs that inherit main(String[]) in their main-class
   - Run JNLP files that use spec version 1.6
   - RH601281: Possible NullPointerException in splash screen code
+* Plugin 
+ - RH560193: Fix ziperror when applet jar contained another 0-byte jar
 
 New in release 1.8.1 (2010-07-28):
 
diff -r adf4b68ed6af -r 490708229ca2 netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java
--- a/netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java	Thu Aug 26 11:14:01 2010 +0200
+++ b/netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java	Fri Aug 27 14:50:02 2010 -0400
@@ -638,13 +638,20 @@ public class JNLPClassLoader extends URL
 
                                     byte[] bytes = new byte[1024];
                                     int read = is.read(bytes);
+                                    int fileSize = read;
                                     while (read > 0) {
                                         extractedJar.write(bytes, 0, read);
                                         read = is.read(bytes);
+                                        fileSize += read;
                                     }
 
                                     is.close();
                                     extractedJar.close();
+                                    
+                                    // 0 byte file? skip
+                                    if (fileSize <= 0) {
+                                    	continue;
+                                    }
 
                                     JarSigner signer = new JarSigner();
                                     signer.verifyJar(extractedJarLocation);



More information about the distro-pkg-dev mailing list