/hg/release/icedtea6-1.8: Fix rhbz#560193
dbhole at icedtea.classpath.org
dbhole at icedtea.classpath.org
Fri Aug 27 11:52:28 PDT 2010
changeset 73442a614b23 in /hg/release/icedtea6-1.8
details: http://icedtea.classpath.org/hg/release/icedtea6-1.8?cmd=changeset;node=73442a614b23
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 (50 lines):
diff -r 01d87c70057a -r 73442a614b23 ChangeLog
--- a/ChangeLog Wed Aug 25 17:13:03 2010 +0100
+++ b/ChangeLog Fri Aug 27 14:50:02 2010 -0400
@@ -1,3 +1,10 @@ 2010-07-30 Andrew John Hughes <ahughes
+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>
* Makefile.am: Add patch below.
diff -r 01d87c70057a -r 73442a614b23 NEWS
--- a/NEWS Wed Aug 25 17:13:03 2010 +0100
+++ b/NEWS Fri Aug 27 14:50:02 2010 -0400
@@ -9,6 +9,8 @@ New in release 1.8.2 (XXXX-XX-XX):
- Run programs that inherit main(String[]) in their main-class
- Run JNLP files that use 1.6 as the spec version
- 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 01d87c70057a -r 73442a614b23 netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java
--- a/netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java Wed Aug 25 17:13:03 2010 +0100
+++ 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