diff options
author | Jay Satiro <raysatiro@yahoo.com> | 2019-07-22 15:43:41 -0400 |
---|---|---|
committer | Jay Satiro <raysatiro@yahoo.com> | 2019-07-23 10:44:55 -0400 |
commit | cdf7d13bcb144756af8d3ae2dc92d638a65e0e0f (patch) | |
tree | a8c968b6efc13b839055f088094ff2d3e8564175 | |
parent | 23c99f60babd64164776c8bef1525fa411f8bed1 (diff) |
tool_operate: fix implicit call to easysrc_cleanup
easysrc_cleanup is only defined when CURL_DISABLE_LIBCURL_OPTION is not
defined, and prior to this change would be called regardless.
Bug: https://github.com/curl/curl/pull/3804#issuecomment-513922637
Reported-by: Marcel Raad
Closes https://github.com/curl/curl/pull/4142
-rw-r--r-- | src/tool_operate.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/tool_operate.c b/src/tool_operate.c index 6b2d89ffb..68cd11c56 100644 --- a/src/tool_operate.c +++ b/src/tool_operate.c @@ -2286,8 +2286,12 @@ CURLcode operate(struct GlobalConfig *config, int argc, argv_item_t argv[]) struct OperationConfig *operation = config->first; CURLSH *share = curl_share_init(); if(!share) { - /* Cleanup the libcurl source output */ - easysrc_cleanup(); +#ifndef CURL_DISABLE_LIBCURL_OPTION + if(config->libcurl) { + /* Cleanup the libcurl source output */ + easysrc_cleanup(); + } +#endif return CURLE_OUT_OF_MEMORY; } |