summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2012-03-16 09:36:38 -0400
committerStephen Gallagher <sgallagh@redhat.com>2012-03-16 14:07:37 -0400
commit5b9c04e210aaf36d45d346dac38b8f7f70e17025 (patch)
tree0ed309b2aa36da2433b1a0e65afbd9e6ba17e32e /src
parenta9b96ea0efe6174a70834efe253fb5eae99e71fa (diff)
downloadsssd-5b9c04e210aaf36d45d346dac38b8f7f70e17025.tar.gz
sssd-5b9c04e210aaf36d45d346dac38b8f7f70e17025.tar.xz
sssd-5b9c04e210aaf36d45d346dac38b8f7f70e17025.zip
Fix uninitialized variable
Diffstat (limited to 'src')
-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 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;