1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-12 20:58:37 +03:00

Fix an uninitialized variable

(This used to be commit edce7bd7a9dd1064ba8aec34b334c7395228f40b)
This commit is contained in:
Volker Lendecke 2007-12-01 11:43:00 +01:00 committed by Jeremy Allison
parent f4e4df66e7
commit 4a3ee48de5

View File

@ -4172,7 +4172,7 @@ convert_string_to_sid(struct cli_state *ipc_cli,
enum lsa_SidType *types = NULL;
DOM_SID *sids = NULL;
bool result = True;
TALLOC_CTX *ctx;
TALLOC_CTX *ctx = NULL;
struct rpc_pipe_client *pipe_hnd = find_lsa_pipe_hnd(ipc_cli);
if (!pipe_hnd) {