diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2012-03-16 09:36:38 -0400 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2012-03-16 14:07:37 -0400 |
commit | 5b9c04e210aaf36d45d346dac38b8f7f70e17025 (patch) | |
tree | 0ed309b2aa36da2433b1a0e65afbd9e6ba17e32e | |
parent | a9b96ea0efe6174a70834efe253fb5eae99e71fa (diff) | |
download | sssd-5b9c04e210aaf36d45d346dac38b8f7f70e17025.tar.gz sssd-5b9c04e210aaf36d45d346dac38b8f7f70e17025.tar.xz sssd-5b9c04e210aaf36d45d346dac38b8f7f70e17025.zip |
Fix uninitialized variable
-rw-r--r-- | src/providers/ldap/ldap_common.c | 2 |
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; |