/hg/release/icedtea6-1.8: netx: check for possible null in splas...
omajid at icedtea.classpath.org
omajid at icedtea.classpath.org
Tue Aug 24 07:07:47 PDT 2010
changeset 3ec77b8b0bcd in /hg/release/icedtea6-1.8
details: http://icedtea.classpath.org/hg/release/icedtea6-1.8?cmd=changeset;node=3ec77b8b0bcd
author: omajid
date: Tue Aug 24 10:07:23 2010 -0400
netx: check for possible null in splash screen code
2010-08-24 Omair Majid <omajid at redhat.com>
Fixes rhbz601281
* NEWS: Update with this fix.
* netx/net/sourceforge/jnlp/JNLPSplashScreen.java
(setSplashImageURL): Check for possible null.
diffstat:
3 files changed, 14 insertions(+)
ChangeLog | 7 +++++++
NEWS | 1 +
netx/net/sourceforge/jnlp/JNLPSplashScreen.java | 6 ++++++
diffs (41 lines):
diff -r 617fcc039423 -r 3ec77b8b0bcd ChangeLog
--- a/ChangeLog Mon Aug 23 17:41:38 2010 -0400
+++ b/ChangeLog Tue Aug 24 10:07:23 2010 -0400
@@ -1,3 +1,10 @@ 2010-08-23 Andrew Su <asu at redhat.com>
+2010-08-24 Omair Majid <omajid at redhat.com>
+
+ Fixes rhbz601281
+ * NEWS: Update with this fix.
+ * netx/net/sourceforge/jnlp/JNLPSplashScreen.java
+ (setSplashImageURL): Check for possible null.
+
2010-08-23 Andrew Su <asu at redhat.com>
* plugin/icedteanp/java/sun/applet/PluginAppletViewer.java
diff -r 617fcc039423 -r 3ec77b8b0bcd NEWS
--- a/NEWS Mon Aug 23 17:41:38 2010 -0400
+++ b/NEWS Tue Aug 24 10:07:23 2010 -0400
@@ -4,6 +4,7 @@ New in release 1.8.2 (XXXX-XX-XX):
- Fix browser command in BasicService.showDocument(URL)
- 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
New in release 1.8.1 (2010-07-28):
diff -r 617fcc039423 -r 3ec77b8b0bcd netx/net/sourceforge/jnlp/JNLPSplashScreen.java
--- a/netx/net/sourceforge/jnlp/JNLPSplashScreen.java Mon Aug 23 17:41:38 2010 -0400
+++ b/netx/net/sourceforge/jnlp/JNLPSplashScreen.java Tue Aug 24 10:07:23 2010 -0400
@@ -44,6 +44,12 @@ public class JNLPSplashScreen extends JF
try {
splashImage = ImageIO.read(resourceTracker
.getCacheFile(splashImageUrl));
+ if (splashImage == null) {
+ if (JNLPRuntime.isDebug()) {
+ System.err.println("Error loading splash image: " + url);
+ }
+ return;
+ }
} catch (IOException e) {
if (JNLPRuntime.isDebug()) {
System.err.println("Error loading splash image: " + url);
More information about the distro-pkg-dev
mailing list