summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2007-01-16 18:05:37 +0000
committerJeremy Allison <jra@samba.org>2007-01-16 18:05:37 +0000
commitc8498f926f8d0671e7573dde6ae38ae7c7fd0037 (patch)
tree456fc64d7653175fb8f05c1ddb5fa52f3e66fb2f
parent7e8ddc8b5100051395f9d51943306f3bcbd07ad8 (diff)
downloadsamba-c8498f926f8d0671e7573dde6ae38ae7c7fd0037.tar.gz
samba-c8498f926f8d0671e7573dde6ae38ae7c7fd0037.tar.xz
samba-c8498f926f8d0671e7573dde6ae38ae7c7fd0037.zip
r20838: Small fix from Jiri.Sasek@Sun.COM to fix null
pointer deref. Jeremy
-rw-r--r--source/lib/adt_tree.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/lib/adt_tree.c b/source/lib/adt_tree.c
index 05a470bc49e..acd61ee4775 100644
--- a/source/lib/adt_tree.c
+++ b/source/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 */