From 86a40f5d1ad7a0ccb8522137d626551d2e36cd52 Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Sun, 9 Feb 2014 17:16:15 +0000 Subject: tool_operate: Move the trace and error file closure to tool_cfgable --- src/tool_cfgable.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src/tool_cfgable.c') diff --git a/src/tool_cfgable.c b/src/tool_cfgable.c index aed96a48b..3ea73dabd 100644 --- a/src/tool_cfgable.c +++ b/src/tool_cfgable.c @@ -121,11 +121,15 @@ static void free_config_fields(struct Configurable *config) Curl_safefree(config->xoauth2_bearer); - config->trace_stream = NULL; /* closed elsewhere when appropriate */ + if(config->trace_fopened && config->trace_stream) + fclose(config->trace_stream); + config->trace_stream = NULL; Curl_safefree(config->writeout); - config->errors = NULL; /* closed elsewhere when appropriate */ + if(config->errors_fopened && config->errors) + fclose(config->errors); + config->errors = NULL; curl_slist_free_all(config->quote); curl_slist_free_all(config->postquote); -- cgit v1.2.3