mirror of
https://github.com/brl/mutter.git
synced 2024-12-25 20:32:16 +00:00
backends/x11: Trap errors from XIChangeProperty
And report them as warnings instead of crashing. https://launchpad.net/bugs/2014986 Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2960>
This commit is contained in:
parent
86b5d9d809
commit
dd6be7cf2a
@ -170,6 +170,7 @@ change_property (MetaInputSettings *settings,
|
||||
int device_id;
|
||||
Atom property_atom;
|
||||
guchar *data_ret;
|
||||
int err;
|
||||
|
||||
property_atom = XInternAtom (xdisplay, property, True);
|
||||
if (!property_atom)
|
||||
@ -181,8 +182,19 @@ change_property (MetaInputSettings *settings,
|
||||
if (!data_ret)
|
||||
return;
|
||||
|
||||
meta_clutter_x11_trap_x_errors ();
|
||||
XIChangeProperty (xdisplay, device_id, property_atom, type,
|
||||
format, XIPropModeReplace, data, nitems);
|
||||
XSync (xdisplay, False);
|
||||
err = meta_clutter_x11_untrap_x_errors ();
|
||||
if (err)
|
||||
{
|
||||
g_warning ("XIChangeProperty failed on device %d property \"%s\" with X error %d",
|
||||
device_id,
|
||||
property,
|
||||
err);
|
||||
}
|
||||
|
||||
meta_XFree (data_ret);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user