From 5202d3039f2604dadce7938b2aa8ee0697e4fb57 Mon Sep 17 00:00:00 2001 From: Jakub Hrozek Date: Fri, 16 Mar 2012 09:36:38 -0400 Subject: Fix uninitialized variable --- src/providers/ldap/ldap_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/providers/ldap/ldap_common.c b/src/providers/ldap/ldap_common.c index d5dc4a0af..949244183 100644 --- a/src/providers/ldap/ldap_common.c +++ b/src/providers/ldap/ldap_common.c @@ -1598,7 +1598,7 @@ errno_t list_missing_attrs(TALLOC_CTX *mem_ctx, } if (k == 0) { - *missing = NULL; + *missing_attrs = NULL; } else { /* Terminate the list */ missing[k] = NULL; -- cgit