seat: Don't finish wlr_keyboard if server was never started

This commit is contained in:
Alexander Orzechowski 2022-04-16 09:24:10 -04:00 committed by Simon Zeni
parent 640f3b9f21
commit 2ce0305483
1 changed files with 4 additions and 1 deletions

View File

@ -259,7 +259,10 @@ void destroy_wl_seats(struct wlr_wl_backend *wl) {
}
if (seat->wl_keyboard) {
wl_keyboard_release(seat->wl_keyboard);
wlr_keyboard_finish(&seat->wlr_keyboard);
if (seat->backend->started) {
wlr_keyboard_finish(&seat->wlr_keyboard);
}
}
if (seat->zwp_tablet_seat_v2) {
finish_seat_tablet(seat);