From 77e789f65ab6a5007945edc2a9650a7209358b9c Mon Sep 17 00:00:00 2001 From: Sumit Bose Date: Fri, 6 Mar 2015 11:27:36 +0100 Subject: ldap_child: initialized ccname_file_dummy ccname_file_dummy is used in the done-block which is called before ccname_file_dummy is set to a value. This patch initializes ccname_file_dummy to NULL. Related to https://fedorahosted.org/sssd/ticket/2592 Reviewed-by: Jakub Hrozek (cherry picked from commit cc0f9a541c5ecdad750a86b2de9baa1f07403e9e) --- src/providers/ldap/ldap_child.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/providers/ldap/ldap_child.c b/src/providers/ldap/ldap_child.c index bb61a6185..822eb22b9 100644 --- a/src/providers/ldap/ldap_child.c +++ b/src/providers/ldap/ldap_child.c @@ -274,7 +274,7 @@ static krb5_error_code ldap_child_get_tgt_sync(TALLOC_CTX *memctx, int kdc_time_offset_usec; int ret; TALLOC_CTX *tmp_ctx; - char *ccname_file_dummy; + char *ccname_file_dummy = NULL; char *ccname_file; mode_t old_umask; -- cgit