From 5b9c04e210aaf36d45d346dac38b8f7f70e17025 Mon Sep 17 00:00:00 2001 From: Jakub Hrozek Date: Mar 16 2012 18:07:37 +0000 Subject: Fix uninitialized variable --- diff --git a/src/providers/ldap/ldap_common.c b/src/providers/ldap/ldap_common.c index 22d3755..a8bf716 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;