mirror of
https://github.com/brl/mutter.git
synced 2024-12-26 12:52:14 +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;
|
int device_id;
|
||||||
Atom property_atom;
|
Atom property_atom;
|
||||||
guchar *data_ret;
|
guchar *data_ret;
|
||||||
|
int err;
|
||||||
|
|
||||||
property_atom = XInternAtom (xdisplay, property, True);
|
property_atom = XInternAtom (xdisplay, property, True);
|
||||||
if (!property_atom)
|
if (!property_atom)
|
||||||
@ -181,8 +182,19 @@ change_property (MetaInputSettings *settings,
|
|||||||
if (!data_ret)
|
if (!data_ret)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
meta_clutter_x11_trap_x_errors ();
|
||||||
XIChangeProperty (xdisplay, device_id, property_atom, type,
|
XIChangeProperty (xdisplay, device_id, property_atom, type,
|
||||||
format, XIPropModeReplace, data, nitems);
|
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);
|
meta_XFree (data_ret);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user