From 5b9c04e210aaf36d45d346dac38b8f7f70e17025 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 22d375539..a8bf7163a 100644 --- a/src/providers/ldap/ldap_common.c +++ b/src/providers/ldap/ldap_common.c @@ -1645,7 +1645,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