/hg/release/icedtea-web-1.3: Fix PR1157: Applets can hang browse...
adomurad at icedtea.classpath.org
adomurad at icedtea.classpath.org
Fri Mar 1 10:11:49 PST 2013
changeset f63bdf513e9d in /hg/release/icedtea-web-1.3
details: http://icedtea.classpath.org/hg/release/icedtea-web-1.3?cmd=changeset;node=f63bdf513e9d
author: Adam Domurad <adomurad at redhat.com>
date: Fri Mar 01 13:12:21 2013 -0500
Fix PR1157: Applets can hang browser after fatal exception
diffstat:
ChangeLog | 7 +++++++
NEWS | 3 +++
netx/net/sourceforge/jnlp/NetxPanel.java | 10 +++++++---
3 files changed, 17 insertions(+), 3 deletions(-)
diffs (54 lines):
diff -r c89c2bf6707b -r f63bdf513e9d ChangeLog
--- a/ChangeLog Wed Feb 06 09:22:51 2013 -0500
+++ b/ChangeLog Fri Mar 01 13:12:21 2013 -0500
@@ -1,3 +1,10 @@
+2013-03-01 Adam Domurad <adomurad at redhat.com>
+
+ Fix PR1157: Applets can hang browser after fatal exception
+ * NEWS: Add entry for PR1157
+ * netx/net/sourceforge/jnlp/NetxPanel.java
+ (runLoader): Move dispatchAppletEvent into a 'finally' block.
+
2013-02-06 Adam Domurad <adomurad at redhat.com>
Name threads for easier debugging/tooling. Remove 2 erroneous
diff -r c89c2bf6707b -r f63bdf513e9d NEWS
--- a/NEWS Wed Feb 06 09:22:51 2013 -0500
+++ b/NEWS Fri Mar 01 13:12:21 2013 -0500
@@ -8,6 +8,9 @@
CVE-XXXX-YYYY: http://www.cve.mitre.org/cgi-bin/cvename.cgi?name=XXXX-YYYY
+New in release 1.3.3 (2012-XX-XX):
+ PR1157: Applets can hang browser after fatal exception
+
New in release 1.3.2 (2012-XX-XX):
* Plugin
PR1260: IcedTea-Web should not rely on GTK
diff -r c89c2bf6707b -r f63bdf513e9d netx/net/sourceforge/jnlp/NetxPanel.java
--- a/netx/net/sourceforge/jnlp/NetxPanel.java Wed Feb 06 09:22:51 2013 -0500
+++ b/netx/net/sourceforge/jnlp/NetxPanel.java Fri Mar 01 13:12:21 2013 -0500
@@ -163,8 +163,6 @@
// won't make it to the applet, whereas using sun.applet.AppletClassLoader
// works just fine.
- dispatchAppletEvent(APPLET_LOADING_COMPLETED, null);
-
if (applet != null) {
// Stick it in the frame
applet.setStub(this);
@@ -176,7 +174,13 @@
} catch (Exception e) {
this.appletAlive = false;
e.printStackTrace();
- }
+ } finally {
+ // PR1157: This needs to occur even in the case of an exception
+ // so that the applet's event listeners are signaled.
+ // Once PluginAppletViewer.AppletEventListener is signaled PluginAppletViewer it can properly stop waiting
+ // in PluginAppletViewer.waitForAppletInit
+ dispatchAppletEvent(APPLET_LOADING_COMPLETED, null);
+ }
}
/**
More information about the distro-pkg-dev
mailing list