From 673e101b0732f7601a92069159e4d1eac7790506 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 22 May 2006 16:25:04 +0000 Subject: r15808: Fix two uninitialized variables, caught by the IBM Checker. --- source/client/client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/client') 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 -- cgit v1.2.1