svn commit: samba r15808 - in branches/SAMBA_4_0/source/client: .

jelmer at samba.org jelmer at samba.org
Mon May 22 16:25:10 GMT 2006


Author: jelmer
Date: 2006-05-22 16:25:04 +0000 (Mon, 22 May 2006)
New Revision: 15808

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

Log:
Fix two uninitialized variables, caught by the IBM Checker.

Modified:
   branches/SAMBA_4_0/source/client/client.c


Changeset:
Modified: branches/SAMBA_4_0/source/client/client.c
===================================================================
--- branches/SAMBA_4_0/source/client/client.c	2006-05-22 16:22:38 UTC (rev 15807)
+++ branches/SAMBA_4_0/source/client/client.c	2006-05-22 16:25:04 UTC (rev 15808)
@@ -3053,11 +3053,11 @@
  int main(int argc,char *argv[])
 {
 	const char *base_directory = NULL;
-	const char *dest_ip;
+	const char *dest_ip = NULL;
 	int opt;
 	const char *query_host = NULL;
 	BOOL message = False;
-	const char *desthost;
+	const char *desthost = NULL;
 #ifdef KANJI
 	const char *term_code = KANJI;
 #else



More information about the samba-cvs mailing list