X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=src%2Fdentry.c;h=cf6abec5913c0869c9dffea27a30f4f05d65bdcd;hb=ee742f0a166d4aa4a1ab5c495aaa5029d8cf8e66;hp=1d367bfe06e6d5a4e7260173d11240ad945bd380;hpb=ac6edfd02c612da68a1b9a1b32ae64c95a87fbb1;p=wimlib diff --git a/src/dentry.c b/src/dentry.c index 1d367bfe..cf6abec5 100644 --- a/src/dentry.c +++ b/src/dentry.c @@ -250,17 +250,16 @@ int for_dentry_in_tree(struct wim_dentry *root, int (*visitor)(struct wim_dentry*, void*), void *arg) { - int ret = 0; + int ret; - if (root) { - int ret = visitor(root, arg); - if (ret == 0) { - ret = for_dentry_tree_in_rbtree(root->d_inode->i_children.rb_node, - visitor, - arg); - } - } - return ret; + if (!root) + return 0; + ret = (*visitor)(root, arg); + if (ret) + return ret; + return for_dentry_tree_in_rbtree(root->d_inode->i_children.rb_node, + visitor, + arg); } /* Like for_dentry_in_tree(), but the visitor function is always called on a @@ -269,14 +268,15 @@ int for_dentry_in_tree_depth(struct wim_dentry *root, int (*visitor)(struct wim_dentry*, void*), void *arg) { - int ret = 0; - if (root) { - ret = for_dentry_tree_in_rbtree_depth(root->d_inode->i_children.rb_node, - visitor, arg); - if (ret == 0) - ret = visitor(root, arg); - } - return ret; + int ret; + + if (!root) + return 0; + ret = for_dentry_tree_in_rbtree_depth(root->d_inode->i_children.rb_node, + visitor, arg); + if (ret) + return ret; + return (*visitor)(root, arg); } /* Calculate the full path of @dentry. The full path of its parent must have