/hg/release/icedtea-web-1.0: Fix PR638: JNLPClassLoader.loadClas...
omajid at icedtea.classpath.org
omajid at icedtea.classpath.org
Tue Feb 22 16:20:01 PST 2011
changeset ce4eb836f592 in /hg/release/icedtea-web-1.0
details: http://icedtea.classpath.org/hg/release/icedtea-web-1.0?cmd=changeset;node=ce4eb836f592
author: Omair Majid <omajid at redhat.com>
date: Tue Feb 22 19:19:31 2011 -0500
Fix PR638: JNLPClassLoader.loadClass(String name) can return null
2011-02-22 Omair Majid <omajid at redhat.com> Mark
Greenwood <mark at dcs.shef.ac.uk>
Fix PR638
* NEWS: Update with fix.
* netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java (loadClass):
Throw ClassNotFoundException instead of returning null.
* AUTHORS: Update.
diffstat:
4 files changed, 16 insertions(+)
AUTHORS | 1 +
ChangeLog | 9 +++++++++
NEWS | 2 ++
netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java | 4 ++++
diffs (53 lines):
diff -r a7550fb352c5 -r ce4eb836f592 AUTHORS
--- a/AUTHORS Tue Feb 15 17:06:34 2011 -0500
+++ b/AUTHORS Tue Feb 22 19:19:31 2011 -0500
@@ -4,6 +4,7 @@ Lillian Angel <langel at redhat.com>
Lillian Angel <langel at redhat.com>
Deepak Bhole <dbhole at redhat.com>
Thomas Fitzsimmons <fitzsim at redhat.com>
+Mark Greenwood <mark at dcs.shef.ac.uk>
Andrew John Hughes <gnu_andrew at member.fsf.org, ahughes at redhat.com>
Matthias Klose <doko at ubuntu.com>
Francis Kung <fkung at redhat.com>
diff -r a7550fb352c5 -r ce4eb836f592 ChangeLog
--- a/ChangeLog Tue Feb 15 17:06:34 2011 -0500
+++ b/ChangeLog Tue Feb 22 19:19:31 2011 -0500
@@ -1,3 +1,12 @@ 2011-02-11 Deepak Bhole <dbhole at redhat.
+2011-02-22 Omair Majid <omajid at redhat.com>
+ Mark Greenwood <mark at dcs.shef.ac.uk>
+
+ Fix PR638
+ * NEWS: Update with fix.
+ * netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java (loadClass): Throw
+ ClassNotFoundException instead of returning null.
+ * AUTHORS: Update.
+
2011-02-11 Deepak Bhole <dbhole at redhat.com>
* NEWS: Add 1.0.2
diff -r a7550fb352c5 -r ce4eb836f592 NEWS
--- a/NEWS Tue Feb 15 17:06:34 2011 -0500
+++ b/NEWS Tue Feb 22 19:19:31 2011 -0500
@@ -9,6 +9,8 @@ CVE-XXXX-YYYY: http://www.cve.mitre.org/
CVE-XXXX-YYYY: http://www.cve.mitre.org/cgi-bin/cvename.cgi?name=XXXX-YYYY
New in release 1.0.2 (2011-XX-XX):
+* Common Fixes and Improvements
+ - PR638: JNLPClassLoader.loadClass(String name) can return null
New in release 1.0.1 (2011-02-15):
diff -r a7550fb352c5 -r ce4eb836f592 netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java
--- a/netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java Tue Feb 15 17:06:34 2011 -0500
+++ b/netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java Tue Feb 22 19:19:31 2011 -0500
@@ -1042,6 +1042,10 @@ public class JNLPClassLoader extends URL
}
}
+ if (result == null) {
+ throw new ClassNotFoundException(name);
+ }
+
return result;
}
More information about the distro-pkg-dev
mailing list