diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2012-03-16 09:36:38 -0400 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2012-03-20 11:40:30 -0400 |
commit | 5202d3039f2604dadce7938b2aa8ee0697e4fb57 (patch) | |
tree | 174995875a443565732fc84064e8c0efcc53139b /src | |
parent | c8d2e61f2f9774c48506e386b29bbfbb003a923b (diff) | |
download | sssd-5202d3039f2604dadce7938b2aa8ee0697e4fb57.tar.gz sssd-5202d3039f2604dadce7938b2aa8ee0697e4fb57.tar.xz sssd-5202d3039f2604dadce7938b2aa8ee0697e4fb57.zip |
Fix uninitialized variablesssd-1.8.0-17.el6
Diffstat (limited to 'src')
-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 d5dc4a0af..949244183 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; |