From 85fcbcb215ca83540735351b6b33fd8635119ecf Mon Sep 17 00:00:00 2001 From: Richard Sharpe Date: Thu, 1 Oct 1998 01:06:42 +0000 Subject: Fix another possibly unitialized variable ... (This used to be commit 351b9a0f8b6c071f395e082d5e1c98bda706106c) --- source3/rpcclient/cmd_lsarpc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/rpcclient/cmd_lsarpc.c') diff --git a/source3/rpcclient/cmd_lsarpc.c b/source3/rpcclient/cmd_lsarpc.c index a61071c8f7..d1c2711aed 100644 --- a/source3/rpcclient/cmd_lsarpc.c +++ b/source3/rpcclient/cmd_lsarpc.c @@ -127,7 +127,7 @@ void cmd_lsa_lookup_sids(struct client_info *info) fstring srv_name; DOM_SID sid; DOM_SID *sids[1]; - char **names; + char **names = NULL; BOOL res = True; -- cgit