/hg/release/icedtea-web-1.1: PR724: Possible NullPointerExceptio...
omajid at icedtea.classpath.org
omajid at icedtea.classpath.org
Fri May 27 09:53:27 PDT 2011
changeset a962e87c78e8 in /hg/release/icedtea-web-1.1
details: http://icedtea.classpath.org/hg/release/icedtea-web-1.1?cmd=changeset;node=a962e87c78e8
author: Omair Majid <omajid at redhat.com>
date: Fri May 27 12:53:15 2011 -0400
PR724: Possible NullPointerException in
JNLPClassLoader.getClassPathsFromManifest
2011-05-27 Omair Majid <omajid at redhat.com>
* NEWS: Update.
* netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java
(getClassPathsFromManifest): Check for possible nulls and empty
strings.
diffstat:
ChangeLog | 6 ++++++
NEWS | 1 +
netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java | 3 +++
3 files changed, 10 insertions(+), 0 deletions(-)
diffs (37 lines):
diff -r aea73e8365fe -r a962e87c78e8 ChangeLog
--- a/ChangeLog Fri May 27 12:32:52 2011 -0400
+++ b/ChangeLog Fri May 27 12:53:15 2011 -0400
@@ -1,3 +1,9 @@
+2011-05-27 Omair Majid <omajid at redhat.com>
+
+ * NEWS: Update.
+ * netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java
+ (getClassPathsFromManifest): Check for possible nulls and empty strings.
+
2011-05-26 Andrew Su <asu at redhat.com>
* NEWS: Update.
diff -r aea73e8365fe -r a962e87c78e8 NEWS
--- a/NEWS Fri May 27 12:32:52 2011 -0400
+++ b/NEWS Fri May 27 12:53:15 2011 -0400
@@ -21,6 +21,7 @@
- PR497: Mercurial revision detection not very reliable
- PR638: JNLPClassLoader.loadClass(String name) can return null
- RH677772: NoSuchAlgorithmException using SSL/TLS in javaws
+ - PR724: Possible NullPointerException in JNLPClassLoader.getClassPathsFromManifest
* NetX
- Use Firefox's proxy settings if possible
- The user's default browser (determined from xdg-open or $BROWSER) is used
diff -r aea73e8365fe -r a962e87c78e8 netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java
--- a/netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java Fri May 27 12:32:52 2011 -0400
+++ b/netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java Fri May 27 12:53:15 2011 -0400
@@ -1375,6 +1375,9 @@
if (mf != null) {
// extract the Class-Path entries from the manifest and split them
String classpath = mf.getMainAttributes().getValue("Class-Path");
+ if (classpath == null || classpath.trim().length() == 0) {
+ return result;
+ }
String[] paths = classpath.split(" +");
for (String path : paths) {
if (path.trim().length() == 0) {
More information about the distro-pkg-dev
mailing list