From d42e54648e25c910f097772d34d6a154597d7234 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 24 Aug 2005 08:33:56 +0000 Subject: r9569: fixed an uninitialised variable (This used to be commit 5c71547703eeb328cdfbefbbfce6da38f7e6c5d5) --- source4/utils/nmblookup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/utils') diff --git a/source4/utils/nmblookup.c b/source4/utils/nmblookup.c index c8490d08e6..b74a86d345 100644 --- a/source4/utils/nmblookup.c +++ b/source4/utils/nmblookup.c @@ -178,7 +178,7 @@ static void process_one(const char *name) enum nbt_name_type node_type = NBT_NAME_CLIENT; char *node_name, *p; struct nbt_name_socket *nbtsock; - NTSTATUS status; + NTSTATUS status = NT_STATUS_OK; if (!options.case_sensitive) { name = strupper_talloc(tmp_ctx, name); -- cgit