From 3bd0802272938c022384bbfae8360c4f1470ad65 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. (This used to be commit 673e101b0732f7601a92069159e4d1eac7790506) --- source4/client/client.c | 4 ++-- 1 file 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 -- cgit