mirror of
https://github.com/brl/mutter.git
synced 2024-11-10 07:56:14 -05:00
main: Avoid calling meta_wayland_compositor_get_default() on X11
Because it contains an assertion that will fail, and crash.
Started in 301d2c55c6
.
Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1883>
This commit is contained in:
parent
936696afcf
commit
ea626a5059
@ -309,13 +309,16 @@ meta_finalize (void)
|
|||||||
MetaDisplay *display = meta_get_display ();
|
MetaDisplay *display = meta_get_display ();
|
||||||
MetaBackend *backend = meta_get_backend ();
|
MetaBackend *backend = meta_get_backend ();
|
||||||
#ifdef HAVE_WAYLAND
|
#ifdef HAVE_WAYLAND
|
||||||
MetaWaylandCompositor *compositor = meta_wayland_compositor_get_default ();
|
MetaWaylandCompositor *compositor = NULL;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (backend)
|
if (backend)
|
||||||
meta_backend_prepare_shutdown (backend);
|
meta_backend_prepare_shutdown (backend);
|
||||||
|
|
||||||
#ifdef HAVE_WAYLAND
|
#ifdef HAVE_WAYLAND
|
||||||
|
if (meta_is_wayland_compositor ())
|
||||||
|
compositor = meta_wayland_compositor_get_default ();
|
||||||
|
|
||||||
if (compositor)
|
if (compositor)
|
||||||
meta_wayland_compositor_prepare_shutdown (compositor);
|
meta_wayland_compositor_prepare_shutdown (compositor);
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user