projects
/
platform
/
upstream
/
enlightenment.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dd7c25b
)
Tiling2: Fixed a bug in tree-walker.
author
Tom Hacohen
<tom@stosb.com>
Mon, 13 Jan 2014 17:28:46 +0000
(17:28 +0000)
committer
Tom Hacohen
<tom@stosb.com>
Fri, 21 Feb 2014 09:15:05 +0000
(09:15 +0000)
src/modules/tiling/window_tree.c
patch
|
blob
|
history
diff --git
a/src/modules/tiling/window_tree.c
b/src/modules/tiling/window_tree.c
index
5f2bbfc
..
ac05929
100644
(file)
--- a/
src/modules/tiling/window_tree.c
+++ b/
src/modules/tiling/window_tree.c
@@
-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);