diff --git a/backend/wayland/pointer.c b/backend/wayland/pointer.c index b2ed2ae7..0dc5efa9 100644 --- a/backend/wayland/pointer.c +++ b/backend/wayland/pointer.c @@ -401,14 +401,14 @@ const struct wlr_pointer_impl wl_pointer_impl = { }; static void destroy_pointer(struct wlr_wl_pointer *pointer) { - if (pointer->output->cursor.pointer == pointer) { - pointer->output->cursor.pointer = NULL; - } + if (pointer->output->cursor.pointer == pointer) { + pointer->output->cursor.pointer = NULL; + } - wlr_pointer_finish(&pointer->wlr_pointer); - wl_list_remove(&pointer->output_destroy.link); - wl_list_remove(&pointer->link); - free(pointer); + wlr_pointer_finish(&pointer->wlr_pointer); + wl_list_remove(&pointer->output_destroy.link); + wl_list_remove(&pointer->link); + free(pointer); } static void pointer_output_destroy(struct wl_listener *listener, void *data) {