aboutsummaryrefslogtreecommitdiff
path: root/backend/headless/backend.c
diff options
context:
space:
mode:
Diffstat (limited to 'backend/headless/backend.c')
-rw-r--r--backend/headless/backend.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/backend/headless/backend.c b/backend/headless/backend.c
index 34536765..c8d537ab 100644
--- a/backend/headless/backend.c
+++ b/backend/headless/backend.c
@@ -34,14 +34,14 @@ static void backend_destroy(struct wlr_backend *wlr_backend) {
return;
}
- wl_list_remove(&backend->display_destroy.link);
+ wlr_backend_finish(wlr_backend);
struct wlr_headless_output *output, *output_tmp;
wl_list_for_each_safe(output, output_tmp, &backend->outputs, link) {
wlr_output_destroy(&output->wlr_output);
}
- wlr_backend_finish(wlr_backend);
+ wl_list_remove(&backend->display_destroy.link);
free(backend);
}