summaryrefslogtreecommitdiffstats
path: root/src/providers/ldap/sdap_async_groups.c
diff options
context:
space:
mode:
authorOndrej Kos <okos@redhat.com>2013-03-12 13:05:09 +0100
committerSimo Sorce <simo@redhat.com>2013-03-13 14:44:20 -0400
commit9f37bb2012faa136ef7c1f9fe93689ce2be85637 (patch)
tree80878f3fcba322f77e31b1cc72e38a07e2304c87 /src/providers/ldap/sdap_async_groups.c
parent7c0f319813a13723ebe8dc85b004565b63d5e44d (diff)
downloadsssd-9f37bb2012faa136ef7c1f9fe93689ce2be85637.tar.gz
sssd-9f37bb2012faa136ef7c1f9fe93689ce2be85637.tar.xz
sssd-9f37bb2012faa136ef7c1f9fe93689ce2be85637.zip
Fix initialization of multiple variables
Diffstat (limited to 'src/providers/ldap/sdap_async_groups.c')
-rw-r--r--src/providers/ldap/sdap_async_groups.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/providers/ldap/sdap_async_groups.c b/src/providers/ldap/sdap_async_groups.c
index d7885e6b8..5bfa35498 100644
--- a/src/providers/ldap/sdap_async_groups.c
+++ b/src/providers/ldap/sdap_async_groups.c
@@ -2974,7 +2974,7 @@ sdap_nested_group_check_cache(TALLOC_CTX *mem_ctx,
SYSDB_CREATE_TIME, SYSDB_NAME,
NULL };
char *filter;
- enum sysdb_member_type mtype;
+ enum sysdb_member_type mtype = -1;
size_t count;
tmp_ctx = talloc_new(NULL);