From 5c71547703eeb328cdfbefbbfce6da38f7e6c5d5 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 24 Aug 2005 08:33:56 +0000 Subject: [PATCH] r9569: fixed an uninitialised variable --- source/utils/nmblookup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/utils/nmblookup.c b/source/utils/nmblookup.c index c8490d08e6c..b74a86d345d 100644 --- a/source/utils/nmblookup.c +++ b/source/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); -- 2.34.1