RESOLVED FIXED Bug 63248
[GTK] Install a custom X error handler in plugin process
https://bugs.webkit.org/show_bug.cgi?id=63248
Summary [GTK] Install a custom X error handler in plugin process
Carlos Garcia Campos
Reported 2011-06-23 05:22:45 PDT
Some plugins, specially flash, can cause X errors that when handled by the default X error handler (or the GDK one) abort the process. See also bug #53016.
Attachments
Patch (2.67 KB, patch)
2011-06-23 05:28 PDT, Carlos Garcia Campos
mrobinson: review+
Carlos Garcia Campos
Comment 1 2011-06-23 05:28:04 PDT
Created attachment 98336 [details] Patch Fixes a crash in plugin process when loading http://www.f1.com
Martin Robinson
Comment 2 2011-06-23 07:58:06 PDT
Comment on attachment 98336 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=98336&action=review > Source/WebKit2/PluginProcess/gtk/PluginProcessMainGtk.cpp:41 > + gchar errorMessage[64]; > + XGetErrorText(xdisplay, error->error_code, errorMessage, 63); Is 64 enough here?
Carlos Garcia Campos
Comment 3 2011-06-23 08:07:30 PDT
(In reply to comment #2) > (From update of attachment 98336 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=98336&action=review > > > Source/WebKit2/PluginProcess/gtk/PluginProcessMainGtk.cpp:41 > > + gchar errorMessage[64]; > > + XGetErrorText(xdisplay, error->error_code, errorMessage, 63); > > Is 64 enough here? it's based on GDK code, see: http://git.gnome.org/browse/gtk+/tree/gdk/x11/gdkdisplay-x11.c#n2351 so I guess it's enough, we could use something like 1024 to make sure.
Carlos Garcia Campos
Comment 4 2011-07-15 03:40:54 PDT
Note You need to log in before you can comment on or make changes to this bug.