aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog8
-rw-r--r--NEWS1
-rw-r--r--netx/net/sourceforge/jnlp/tools/JarSigner.java2
3 files changed, 10 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index b874077..fb76586 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2011-10-31 Omair Majid <[email protected]>
+
+ PR808: javaws is unable to start when missing jars are enumerated before
+ main jar
+ * NEWS: Update.
+ * netx/net/sourceforge/jnlp/tools/JarSigner.java (verifyJars): Continue
+ with other jars if the first jar can't be used.
+
2011-10-27 Deepak Bhole <[email protected]>
PR778: Jar download and server certificate verification deadlock
diff --git a/NEWS b/NEWS
index 7677244..d5b8f71 100644
--- a/NEWS
+++ b/NEWS
@@ -29,6 +29,7 @@ Common
- PR778: Jar download and server certificate verification deadlock
- PR789: typo in jrunscript.sh
- PR794: IcedTea-Web does not work if a Web Start app jar has a Class-Path element in the manifest
+ - PR808: javaws is unable to start, when missing jars are enumerated before main jar
- RH734081: Javaws cannot use proxy settings from Firefox
- RH738814: Access denied at ssl handshake
- Support for authenticating using client certificates
diff --git a/netx/net/sourceforge/jnlp/tools/JarSigner.java b/netx/net/sourceforge/jnlp/tools/JarSigner.java
index a7d529b..9ddbf6b 100644
--- a/netx/net/sourceforge/jnlp/tools/JarSigner.java
+++ b/netx/net/sourceforge/jnlp/tools/JarSigner.java
@@ -194,7 +194,7 @@ public class JarSigner implements CertVerifier {
// some sort of resource download/cache error. Nothing to add
// in that case ... but don't fail here
if (jarFile == null) {
- return;
+ continue;
}
String localFile = jarFile.getAbsolutePath();