commit de65d05821d5eaae6525e86363c76aaa395346fb
parent 1fd21650d731ebed8ab8ebfc9e21526cdf162525
Author: Dominique Martinet <asmadeus@codewreck.org>
Date: Fri, 13 Apr 2018 14:57:36 +0900
container_destroy: fix segfault
cont->children doesn't have to be NULL when there is no children
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sway/tree/container.c b/sway/tree/container.c
@@ -104,7 +104,7 @@ static void _container_destroy(struct sway_container *cont) {
if (cont->children != NULL && cont->children->length) {
// remove children until there are no more, container_destroy calls
// container_remove_child, which removes child from this container
- while (cont->children != NULL) {
+ while (cont->children != NULL && cont->children->length > 0) {
struct sway_container *child = cont->children->items[0];
container_remove_child(child);
_container_destroy(child);