mirror of
https://github.com/brl/mutter.git
synced 2024-11-09 23:46:33 -05:00
barrier: Complain loudly if bogus barriers are created
The API allows for invalid barriers to be created; in an X11 session, this could result in involutary early exit, so guard against those with soft asserts. These will be logged in the journal as warnings, but will avoid the crash unless compiled out. Note that this doesn't fix the bug, it just makes it more detectable. Related: https://bugzilla.redhat.com/show_bug.cgi?id=1901610 Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1611>
This commit is contained in:
parent
8b6ea12fac
commit
f5949af0bb
@ -180,6 +180,10 @@ meta_barrier_constructed (GObject *object)
|
||||
|
||||
g_return_if_fail (priv->border.line.a.x == priv->border.line.b.x ||
|
||||
priv->border.line.a.y == priv->border.line.b.y);
|
||||
g_return_if_fail (priv->border.line.a.x >= 0);
|
||||
g_return_if_fail (priv->border.line.a.y >= 0);
|
||||
g_return_if_fail (priv->border.line.b.x >= 0);
|
||||
g_return_if_fail (priv->border.line.b.y >= 0);
|
||||
|
||||
#if defined(HAVE_NATIVE_BACKEND)
|
||||
if (META_IS_BACKEND_NATIVE (meta_get_backend ()))
|
||||
|
Loading…
Reference in New Issue
Block a user