From d654a12b2e84e152c798a4c3d53653aeab0003b4 Mon Sep 17 00:00:00 2001 From: Tony Crisci Date: Mon, 18 Dec 2017 16:24:56 -0500 Subject: [PATCH] remove display_destroy unlisten before output free --- types/wlr_output.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/types/wlr_output.c b/types/wlr_output.c index f7b88444..120e0dab 100644 --- a/types/wlr_output.c +++ b/types/wlr_output.c @@ -296,13 +296,14 @@ void wlr_output_destroy(struct wlr_output *output) { wl_list_remove(&mode->link); free(mode); } + + wl_list_remove(&output->display_destroy.link); + if (output->impl && output->impl->destroy) { output->impl->destroy(output); } else { free(output); } - - wl_list_remove(&output->display_destroy.link); } void wlr_output_effective_resolution(struct wlr_output *output,