/hg/release/icedtea-web-1.4: Fixed NPE in getting the attribute
jvanek at icedtea.classpath.org
jvanek at icedtea.classpath.org
Thu Nov 14 01:50:21 PST 2013
changeset 719431dbd56c in /hg/release/icedtea-web-1.4
details: http://icedtea.classpath.org/hg/release/icedtea-web-1.4?cmd=changeset;node=719431dbd56c
author: Jiri Vanek <jvanek at redhat.com>
date: Thu Nov 14 10:56:29 2013 +0100
Fixed NPE in getting the attribute
diffstat:
netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diffs (14 lines):
diff -r 9bf2d89511a4 -r 719431dbd56c netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java
--- a/netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java Wed Nov 13 11:54:42 2013 -0500
+++ b/netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java Thu Nov 14 10:56:29 2013 +0100
@@ -805,6 +805,10 @@
*/
public String checkForAttributeInJars(List<JARDesc> jars, Attributes.Name name) {
+ if (jars.isEmpty()) {
+ return null;
+ }
+
String result = null;
// Check main jar
More information about the distro-pkg-dev
mailing list