diff options
| author | Jelmer Vernooij <jelmer@samba.org> | 2006-05-22 16:25:04 +0000 | 
|---|---|---|
| committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:08:25 -0500 | 
| commit | 3bd0802272938c022384bbfae8360c4f1470ad65 (patch) | |
| tree | 73daed011bf5c11baba16bb3864e040c1862e77f /source4 | |
| parent | 029cf10ff839cb4dde25ce1eeb27f24fc637ed28 (diff) | |
| download | samba-3bd0802272938c022384bbfae8360c4f1470ad65.tar.gz samba-3bd0802272938c022384bbfae8360c4f1470ad65.tar.bz2 samba-3bd0802272938c022384bbfae8360c4f1470ad65.zip  | |
r15808: Fix two uninitialized variables, caught by the IBM Checker.
(This used to be commit 673e101b0732f7601a92069159e4d1eac7790506)
Diffstat (limited to 'source4')
| -rw-r--r-- | source4/client/client.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/client/client.c b/source4/client/client.c index 2646332d03..0100887777 100644 --- a/source4/client/client.c +++ b/source4/client/client.c @@ -3053,11 +3053,11 @@ static int do_message_op(const char *desthost, const char *destip, int name_type   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  | 
