server: fix wlr_seat use-after-free on exit

Same as [1].

I originally tried to properly handle seat destruction, but that
turned out to be a can of worms [2].

[1]: https://gitlab.freedesktop.org/wlroots/wlroots/-/merge_requests/4590
[2]: https://github.com/swaywm/sway/pull/8034
This commit is contained in:
Simon Ser 2024-03-04 13:51:27 +01:00
parent 2e951163c5
commit 2b08e79061
1 changed files with 1 additions and 0 deletions

View File

@ -399,6 +399,7 @@ void server_fini(struct sway_server *server) {
wlr_xwayland_destroy(server->xwayland.wlr_xwayland);
#endif
wl_display_destroy_clients(server->wl_display);
wlr_backend_destroy(server->backend);
wl_display_destroy(server->wl_display);
list_free(server->dirty_nodes);
}