/hg/icedtea-web: 2 new changesets

dbhole at icedtea.classpath.org dbhole at icedtea.classpath.org
Mon Apr 18 08:37:57 PDT 2011


changeset 0d1874f9e7ff in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=0d1874f9e7ff
author: Deepak Bhole <dbhole at redhat.com>
date: Mon Apr 18 11:36:52 2011 -0400

	Fixed RH691259: Midori sends a SIGSEGV with the IcedTea NP Plugin


changeset bdb72bab9e9c in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=bdb72bab9e9c
author: Deepak Bhole <dbhole at redhat.com>
date: Mon Apr 18 11:37:52 2011 -0400

	Fix applet rezising issue seen with some browsers (Midori)


diffstat:

 ChangeLog                                                |  14 ++++++++
 plugin/icedteanp/IcedTeaNPPlugin.cc                      |  20 +++++++----
 plugin/icedteanp/java/sun/applet/PluginAppletViewer.java |  26 +++++++++++++++-
 3 files changed, 51 insertions(+), 9 deletions(-)

diffs (101 lines):

diff -r b4db997469a2 -r bdb72bab9e9c ChangeLog
--- a/ChangeLog	Thu Apr 14 21:41:32 2011 +0100
+++ b/ChangeLog	Mon Apr 18 11:37:52 2011 -0400
@@ -1,3 +1,17 @@
+2011-04-18  Deepak Bhole <dbhole at redhat.com>
+
+	* plugin/icedteanp/java/sun/applet/PluginAppletViewer.java
+	(PluginAppletPanelFactory::createPanel): Make the NetxPanel variable
+	final. Resize frame to work around problem whereby AppletViewerPanel
+	doesn't always set the right size initially.
+
+2011-04-18  Deepak Bhole <dbhole at redhat.com>
+
+	RH691259: Midori sends a SIGSEGV with the IcedTea NP Plugin
+	* plugin/icedteanp/IcedTeaNPPlugin.cc (NP_Initialize): Rather than
+	returning immediately if already initialized, return after function tables
+	are reset.
+
 2010-04-11  Andrew John Hughes  <ahughes at redhat.com>
 
 	* configure.ac:
diff -r b4db997469a2 -r bdb72bab9e9c plugin/icedteanp/IcedTeaNPPlugin.cc
--- a/plugin/icedteanp/IcedTeaNPPlugin.cc	Thu Apr 14 21:41:32 2011 +0100
+++ b/plugin/icedteanp/IcedTeaNPPlugin.cc	Mon Apr 18 11:37:52 2011 -0400
@@ -2009,14 +2009,12 @@
 {
   PLUGIN_DEBUG ("NP_Initialize\n");
 
-  if (initialized)
-    return NPERR_NO_ERROR;
-  else if ((browserTable == NULL) || (pluginTable == NULL))
-    {
-      PLUGIN_ERROR ("Browser or plugin function table is NULL.");
-
-      return NPERR_INVALID_FUNCTABLE_ERROR;
-    }
+  if ((browserTable == NULL) || (pluginTable == NULL))
+  {
+    PLUGIN_ERROR ("Browser or plugin function table is NULL.");
+
+    return NPERR_INVALID_FUNCTABLE_ERROR;
+  }
 
   // Ensure that the major version of the plugin API that the browser
   // expects is not more recent than the major version of the API that
@@ -2123,6 +2121,12 @@
   pluginTable->getvalue = NPP_GetValueProcPtr (ITNP_GetValue);
 #endif
 
+  // Re-setting the above tables multiple times is OK (as the 
+  // browser may change its function locations). However 
+  // anything beyond this point should only run once.
+  if (initialized)
+    return NPERR_NO_ERROR;
+
   // Make sure the plugin data directory exists, creating it if
   // necessary.
   data_directory = g_strconcat (P_tmpdir, NULL);
diff -r b4db997469a2 -r bdb72bab9e9c plugin/icedteanp/java/sun/applet/PluginAppletViewer.java
--- a/plugin/icedteanp/java/sun/applet/PluginAppletViewer.java	Thu Apr 14 21:41:32 2011 +0100
+++ b/plugin/icedteanp/java/sun/applet/PluginAppletViewer.java	Mon Apr 18 11:37:52 2011 -0400
@@ -122,7 +122,7 @@
                                     long handle, int x, int y,
                                     final URL doc,
                                     final Hashtable<String, String> atts) {
-        NetxPanel panel = AccessController.doPrivileged(new PrivilegedAction<NetxPanel>() {
+        final NetxPanel panel = AccessController.doPrivileged(new PrivilegedAction<NetxPanel>() {
             public NetxPanel run() {
                 NetxPanel panel = new NetxPanel(doc, atts, false);
                 NetxPanel.debug("Using NetX panel");
@@ -171,6 +171,30 @@
         PluginDebug.debug("Applet ", a.getClass(), " initialized");
         streamhandler.write("instance " + identifier + " reference 0 initialized");
 
+        /* AppletViewerPanel sometimes doesn't set size right initially. This 
+         * causes the parent frame to be the default (10x10) size.
+         *  
+         * Normally it goes unnoticed since browsers like Firefox make a resize 
+         * call after init. However some browsers (e.g. Midori) don't.
+         * 
+         * We therefore manually set the parent to the right size.
+         */
+        try {
+            SwingUtilities.invokeAndWait(new Runnable() {
+                public void run() {
+                    panel.getParent().setSize(Integer.valueOf(atts.get("width")), Integer.valueOf(atts.get("height")));
+                }
+            });
+        } catch (InvocationTargetException ite) {
+            // Not being able to resize is non-fatal
+            PluginDebug.debug("Unable to resize panel: ");
+            ite.printStackTrace();
+        } catch (InterruptedException ie) {
+            // Not being able to resize is non-fatal
+            PluginDebug.debug("Unable to resize panel: ");
+            ie.printStackTrace();
+        }
+
         AppletSecurityContextManager.getSecurityContext(0).associateSrc(panel.getAppletClassLoader(), doc);
         AppletSecurityContextManager.getSecurityContext(0).associateInstance(identifier, panel.getAppletClassLoader());
 



More information about the distro-pkg-dev mailing list