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 | 673e101b0732f7601a92069159e4d1eac7790506 (patch) | |
tree | 7d6243ce4f0517d5f9b144a1c8583bba8d4ce2a3 /source/client | |
parent | 2b65c490e40241fb4d4f938a867e33780295ad05 (diff) | |
download | samba-673e101b0732f7601a92069159e4d1eac7790506.tar.gz |
r15808: Fix two uninitialized variables, caught by the IBM Checker.
Diffstat (limited to 'source/client')
-rw-r--r-- | source/client/client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/client/client.c b/source/client/client.c index 2646332d03f..0100887777a 100644 --- a/source/client/client.c +++ b/source/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 |