diff options
-rw-r--r-- | src/tool_operate.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/tool_operate.c b/src/tool_operate.c index 03907e7bd..689f769cb 100644 --- a/src/tool_operate.c +++ b/src/tool_operate.c @@ -1839,6 +1839,9 @@ CURLcode operate(struct GlobalConfig *config, int argc, argv_item_t argv[]) #ifndef CURL_DISABLE_LIBCURL_OPTION /* Cleanup the libcurl source output */ easysrc_cleanup(); + + /* Dump the libcurl code if previously enabled */ + dumpeasysrc(config); #endif } else @@ -1846,12 +1849,5 @@ CURLcode operate(struct GlobalConfig *config, int argc, argv_item_t argv[]) } } -#ifndef CURL_DISABLE_LIBCURL_OPTION - /* Dump the libcurl code if previously enabled. - NOTE: that this function relies on config->errors amongst other things - so not everything can be closed and cleaned before this is called */ - dumpeasysrc(config); -#endif - return result; } |