Author: tridge Date: 2005-08-24 08:33:56 +0000 (Wed, 24 Aug 2005) New Revision: 9569
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=9569 Log: fixed an uninitialised variable Modified: branches/SAMBA_4_0/source/utils/nmblookup.c Changeset: Modified: branches/SAMBA_4_0/source/utils/nmblookup.c =================================================================== --- branches/SAMBA_4_0/source/utils/nmblookup.c 2005-08-24 08:32:51 UTC (rev 9568) +++ branches/SAMBA_4_0/source/utils/nmblookup.c 2005-08-24 08:33:56 UTC (rev 9569) @@ -178,7 +178,7 @@ 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);
