svn commit: samba r20838 - in branches: SAMBA_3_0/source/lib SAMBA_3_0_24/source/lib

jra at samba.org jra at samba.org
Tue Jan 16 18:05:37 GMT 2007


Author: jra
Date: 2007-01-16 18:05:37 +0000 (Tue, 16 Jan 2007)
New Revision: 20838

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=20838

Log:
Small fix from Jiri.Sasek at Sun.COM to fix null
pointer deref.
Jeremy

Modified:
   branches/SAMBA_3_0/source/lib/adt_tree.c
   branches/SAMBA_3_0_24/source/lib/adt_tree.c


Changeset:
Modified: branches/SAMBA_3_0/source/lib/adt_tree.c
===================================================================
--- branches/SAMBA_3_0/source/lib/adt_tree.c	2007-01-16 17:48:59 UTC (rev 20837)
+++ branches/SAMBA_3_0/source/lib/adt_tree.c	2007-01-16 18:05:37 UTC (rev 20838)
@@ -334,7 +334,7 @@
 
  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 @@
 		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 */
 		

Modified: branches/SAMBA_3_0_24/source/lib/adt_tree.c
===================================================================
--- branches/SAMBA_3_0_24/source/lib/adt_tree.c	2007-01-16 17:48:59 UTC (rev 20837)
+++ branches/SAMBA_3_0_24/source/lib/adt_tree.c	2007-01-16 18:05:37 UTC (rev 20838)
@@ -334,7 +334,7 @@
 
  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 @@
 		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 */
 		



More information about the samba-cvs mailing list