From 9ccf66f53d5bf7aba6e2ede28f3bd1964a567ae0 Mon Sep 17 00:00:00 2001 From: emersion Date: Tue, 24 Oct 2017 21:44:30 +0200 Subject: [PATCH] Remove gamma_control->link from list in destroy --- types/wlr_gamma_control.c | 1 + 1 file changed, 1 insertion(+) diff --git a/types/wlr_gamma_control.c b/types/wlr_gamma_control.c index 9d74e749..e765c2a5 100644 --- a/types/wlr_gamma_control.c +++ b/types/wlr_gamma_control.c @@ -15,6 +15,7 @@ static void gamma_control_destroy(struct wlr_gamma_control *gamma_control) { wl_signal_emit(&gamma_control->events.destroy, gamma_control); wl_list_remove(&gamma_control->output_destroy_listener.link); wl_resource_set_user_data(gamma_control->resource, NULL); + wl_list_remove(&gamma_control->link); free(gamma_control); }