diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-10-09 12:03:32 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2017-10-09 12:04:06 -0400 |
commit | a82aa2a20d865dd65f2ea9b9efb15d72ab7638a0 (patch) | |
tree | 44898e630810c6def78ee408f5c1001744c1007f /sway/container.c | |
parent | 6271abd644da15070d29d2d06bc527f89a799375 (diff) |
Fix use-after free introduced by cbe7364
Diffstat (limited to 'sway/container.c')
-rw-r--r-- | sway/container.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/container.c b/sway/container.c index 718608ff..829fde69 100644 --- a/sway/container.c +++ b/sway/container.c @@ -516,10 +516,10 @@ swayc_t *destroy_view(swayc_t *view) { return NULL; } sway_log(L_DEBUG, "Destroying view '%p'", view); + swayc_t *parent = view->parent; free_swayc(view); // Destroy empty containers - swayc_t *parent = view->parent; if (parent && parent->type == C_CONTAINER) { return destroy_container(parent); } |