Destroying a wl_cursor will attempt to access the wl_display, which
we have just freed. Avoid a segfault by destroying the cursor images
before we destroy the display.
Signed-off-by: Daniel Stone <daniels@collabora.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Dima Ryazanov <dima@gmail.com>
if (b->parent.compositor)
wl_compositor_destroy(b->parent.compositor);
- wl_registry_destroy(b->parent.registry);
- wl_display_flush(b->parent.wl_display);
- wl_display_disconnect(b->parent.wl_display);
-
if (b->theme)
theme_destroy(b->theme);
wl_cursor_theme_destroy(b->cursor_theme);
+ wl_registry_destroy(b->parent.registry);
+ wl_display_flush(b->parent.wl_display);
+ wl_display_disconnect(b->parent.wl_display);
+
free(b);
}