summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2012-03-16 09:36:38 -0400
committerStephen Gallagher <sgallagh@redhat.com>2012-03-20 11:40:30 -0400
commit5202d3039f2604dadce7938b2aa8ee0697e4fb57 (patch)
tree174995875a443565732fc84064e8c0efcc53139b
parentc8d2e61f2f9774c48506e386b29bbfbb003a923b (diff)
downloadsssd_unused-sssd-1.8.0-17.el6.tar.gz
sssd_unused-sssd-1.8.0-17.el6.tar.xz
sssd_unused-sssd-1.8.0-17.el6.zip
Fix uninitialized variablesssd-1.8.0-17.el6
-rw-r--r--src/providers/ldap/ldap_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/providers/ldap/ldap_common.c b/src/providers/ldap/ldap_common.c
index d5dc4a0a..94924418 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;