r22613: Fix an uninitialized variable warning
authorVolker Lendecke <vlendec@samba.org>
Mon, 30 Apr 2007 17:19:49 +0000 (17:19 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 17:19:50 +0000 (12:19 -0500)
(This used to be commit d4c5d5ffb30fe50abb828067b047d5eb61038ddf)

source3/passdb/lookup_sid.c

index 2cef17725b8778a6a5857dccb1d782f314d9d17c..0bf2644844511d7a366ad9b935358456e195ff8e 100644 (file)
@@ -683,7 +683,7 @@ NTSTATUS lookup_sids(TALLOC_CTX *mem_ctx, int num_sids,
        TALLOC_CTX *tmp_ctx;
        NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
        struct lsa_name_info *name_infos;
-       struct lsa_dom_info *dom_infos;
+       struct lsa_dom_info *dom_infos = NULL;
 
        int i, j;