aboutsummaryrefslogtreecommitdiff
path: root/sway/tree/container.c
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-05-01 13:41:37 -0400
committerGitHub <noreply@github.com>2018-05-01 13:41:37 -0400
commitc82a04e110b55c37a24fb5175e35ab8e5bec534c (patch)
tree926b0553f47eb786dc0c40ab99d2d56ebc64c66b /sway/tree/container.c
parent0e51c7be449dd68025d5acd8c634f8dcacb10a16 (diff)
parent22170bde77a92126ab5c183604634bbb2b89a10a (diff)
downloadsway-c82a04e110b55c37a24fb5175e35ab8e5bec534c.tar.xz
Merge pull request #1885 from thejan2009/master
Fix layer surface segfault on output destroy
Diffstat (limited to 'sway/tree/container.c')
-rw-r--r--sway/tree/container.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/sway/tree/container.c b/sway/tree/container.c
index 995da5ce..6ac59547 100644
--- a/sway/tree/container.c
+++ b/sway/tree/container.c
@@ -156,6 +156,9 @@ static struct sway_container *container_output_destroy(
wl_list_remove(&output->sway_output->damage_destroy.link);
wl_list_remove(&output->sway_output->damage_frame.link);
+ // clear the wlr_output reference to this container
+ output->sway_output->wlr_output->data = NULL;
+
wlr_log(L_DEBUG, "OUTPUT: Destroying output '%s'", output->name);
_container_destroy(output);
return &root_container;