diff options
author | Tony Crisci <tony@dubstepdish.com> | 2018-04-04 00:22:40 -0400 |
---|---|---|
committer | Tony Crisci <tony@dubstepdish.com> | 2018-04-04 00:22:40 -0400 |
commit | 62c79ef4510d4687e35deab177cf5114a138261f (patch) | |
tree | 1565ba1fede2da35b170353f895c34205216dc38 | |
parent | 741e3959e30283f5f699f7e9fa6620e3578b9c76 (diff) |
fix double free
-rw-r--r-- | sway/tree/container.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sway/tree/container.c b/sway/tree/container.c index 57dcb4bd..eaf4c117 100644 --- a/sway/tree/container.c +++ b/sway/tree/container.c @@ -253,7 +253,6 @@ struct sway_container *container_destroy(struct sway_container *con) { container_remove_child(child); container_add_child(parent, child); } - _container_destroy(con); } _container_destroy(con); break; |