Tiling2: Fixed a bug in tree-walker.

This commit is contained in:
Tom Hacohen 2014-01-13 17:28:46 +00:00
parent dd7c25b506
commit 9831904a88
1 changed files with 3 additions and 0 deletions

View File

@ -7,6 +7,9 @@ tiling_window_tree_walk(Window_Tree *root, void (*func)(void *))
{
Eina_Inlist *itr_safe;
Window_Tree *itr;
if (!root)
return;
EINA_INLIST_FOREACH_SAFE(root->children, itr_safe, itr)
{
tiling_window_tree_free(itr);