/hg/release/icedtea-web-1.0: Prevent NPE in appletClose() by cal...

dbhole at icedtea.classpath.org dbhole at icedtea.classpath.org
Thu Apr 7 15:07:44 PDT 2011


changeset 218e20b249b8 in /hg/release/icedtea-web-1.0
details: http://icedtea.classpath.org/hg/release/icedtea-web-1.0?cmd=changeset;node=218e20b249b8
author: Deepak Bhole <dbhole at redhat.com>
date: Thu Apr 07 18:06:40 2011 -0400

	Prevent NPE in appletClose() by calling it only via the thread-safe
	destroyApplet() method.


diffstat:

 ChangeLog                                                |  6 ++++++
 plugin/icedteanp/java/sun/applet/PluginAppletViewer.java |  2 +-
 2 files changed, 7 insertions(+), 1 deletions(-)

diffs (25 lines):

diff -r 9fd1cd238005 -r 218e20b249b8 ChangeLog
--- a/ChangeLog	Sun Apr 03 19:11:48 2011 -0400
+++ b/ChangeLog	Thu Apr 07 18:06:40 2011 -0400
@@ -1,3 +1,9 @@
+2011-04-07  Deepak Bhole <dbhole at redhat.com>
+
+	* plugin/icedteanp/java/sun/applet/PluginAppletViewer.java
+	(constructor): Make window close event call destroy applet which can be
+	safely called multiple times, unlike appletClose.
+
 2011-04-04  Deepak Bhole <dbhole at redhat.com>
 
 	* NEWS: Add 1.0.3
diff -r 9fd1cd238005 -r 218e20b249b8 plugin/icedteanp/java/sun/applet/PluginAppletViewer.java
--- a/plugin/icedteanp/java/sun/applet/PluginAppletViewer.java	Sun Apr 03 19:11:48 2011 -0400
+++ b/plugin/icedteanp/java/sun/applet/PluginAppletViewer.java	Thu Apr 07 18:06:40 2011 -0400
@@ -406,7 +406,7 @@
         windowEventListener = new WindowAdapter() {
 
             public void windowClosing(WindowEvent evt) {
-                appletClose();
+                destroyApplet(identifier);
             }
 
             public void windowIconified(WindowEvent evt) {



More information about the distro-pkg-dev mailing list