From a82aa2a20d865dd65f2ea9b9efb15d72ab7638a0 Mon Sep 17 00:00:00 2001
From: Drew DeVault <sir@cmpwn.com>
Date: Mon, 9 Oct 2017 12:03:32 -0400
Subject: Fix use-after free introduced by cbe7364

---
 sway/container.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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);
 	}
-- 
cgit v1.2.3