Merge pull request #2484 from ianyfan/con-for-each-child-fix

Fix double iterating in container_for_each_child
This commit is contained in:
Ryan Dwyer 2018-08-19 08:59:00 +10:00 committed by GitHub
commit 373f0254a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -737,10 +737,10 @@ void container_for_each_child(struct sway_container *container,
container->type == C_VIEW, "Expected a container or view")) {
return;
}
f(container, data);
if (container->children) {
for (int i = 0; i < container->children->length; ++i) {
struct sway_container *child = container->children->items[i];
f(child, data);
container_for_each_child(child, f, data);
}
}