diff options
-rw-r--r-- | source3/lib/adt_tree.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source3/lib/adt_tree.c b/source3/lib/adt_tree.c index 05a470bc49..acd61ee477 100644 --- a/source3/lib/adt_tree.c +++ b/source3/lib/adt_tree.c @@ -334,7 +334,7 @@ static void pathtree_print_children( TREE_NODE *node, int debug, const char *pat void* pathtree_find( SORTED_TREE *tree, char *key ) { - char *keystr, *base, *str, *p; + char *keystr, *base = NULL, *str = NULL, *p; TREE_NODE *current; void *result = NULL; @@ -383,7 +383,8 @@ static void pathtree_print_children( TREE_NODE *node, int debug, const char *pat trim_tree_keypath( p, &base, &str ); DEBUG(11,("pathtree_find: [loop] base => [%s], new_path => [%s]\n", - base, str)); + base ? base : "", + str ? str : "")); /* iterate to the next child */ |