mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-21 21:17:19 +00:00
[client] wayland: handle NULL wl_keyboard on destruction
This commit is contained in:
parent
94684324f4
commit
eea0ced627
@ -420,7 +420,12 @@ void waylandInputFree(void)
|
||||
|
||||
if (wlWm.pointer)
|
||||
waylandCleanUpPointer();
|
||||
wl_keyboard_destroy(wlWm.keyboard);
|
||||
|
||||
// The only legal way the keyboard can be null is if it never existed.
|
||||
// When unplugged, the compositor must have an inert object.
|
||||
if (wlWm.keyboard)
|
||||
wl_keyboard_destroy(wlWm.keyboard);
|
||||
|
||||
wl_seat_destroy(wlWm.seat);
|
||||
|
||||
if (wlWm.xkbState)
|
||||
|
Loading…
Reference in New Issue
Block a user