From 273e5d2b64c02f5a264be52c3055f318ae800377 Mon Sep 17 00:00:00 2001 From: Pavel Březina Date: Dec 16 2011 19:46:18 +0000 Subject: Use of uninitialized value in sss_ldap_dn_in_search_bases https://fedorahosted.org/sssd/ticket/1112 --- diff --git a/src/util/sss_ldap.c b/src/util/sss_ldap.c index dcaa579..dbccc94 100644 --- a/src/util/sss_ldap.c +++ b/src/util/sss_ldap.c @@ -480,9 +480,9 @@ bool sss_ldap_dn_in_search_bases(TALLOC_CTX *mem_ctx, int basedn_len, dn_len; int len_diff; int i, j; - bool base_confirmed; - bool comma_found; - bool backslash_found; + bool base_confirmed = false; + bool comma_found = false; + bool backslash_found = false; char *filter = NULL; bool ret = false;