Not doing this would leave a invalid list item in the view's destroy signal listener list if destroying a seat that had previously lost keyboard focus.
Signed-off-by: Jonas Ådahl <[email protected]> --- src/input.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/input.c b/src/input.c index 07e9d6c..581326d 100644 --- a/src/input.c +++ b/src/input.c @@ -2185,6 +2185,9 @@ weston_seat_release(struct weston_seat *seat) { wl_list_remove(&seat->link); + if (seat->saved_kbd_focus) + wl_list_remove(&seat->saved_kbd_focus_listener.link); + if (seat->pointer) weston_pointer_destroy(seat->pointer); if (seat->keyboard) -- 1.8.3.2 _______________________________________________ wayland-devel mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/wayland-devel
