Loading src/main.c +7 −1 Original line number Diff line number Diff line Loading @@ -2505,6 +2505,11 @@ operate(struct Configurable *config, int argc, char *argv[]) curl_free(env); curl_memdebug("memdump"); } env = curl_getenv("CURL_MEMLIMIT"); if(env) { curl_memlimit(atoi(env)); curl_free(env); } #endif /* we get libcurl info right away */ Loading Loading @@ -3057,6 +3062,7 @@ operate(struct Configurable *config, int argc, char *argv[]) config->headerfile?&heads:NULL); curl_easy_setopt(curl, CURLOPT_COOKIEFILE, config->cookiefile); /* cookie jar was added in 7.9 */ if(config->cookiejar) curl_easy_setopt(curl, CURLOPT_COOKIEJAR, config->cookiejar); /* cookie session added in 7.9.7 */ curl_easy_setopt(curl, CURLOPT_COOKIESESSION, config->cookiesession); Loading Loading
src/main.c +7 −1 Original line number Diff line number Diff line Loading @@ -2505,6 +2505,11 @@ operate(struct Configurable *config, int argc, char *argv[]) curl_free(env); curl_memdebug("memdump"); } env = curl_getenv("CURL_MEMLIMIT"); if(env) { curl_memlimit(atoi(env)); curl_free(env); } #endif /* we get libcurl info right away */ Loading Loading @@ -3057,6 +3062,7 @@ operate(struct Configurable *config, int argc, char *argv[]) config->headerfile?&heads:NULL); curl_easy_setopt(curl, CURLOPT_COOKIEFILE, config->cookiefile); /* cookie jar was added in 7.9 */ if(config->cookiejar) curl_easy_setopt(curl, CURLOPT_COOKIEJAR, config->cookiejar); /* cookie session added in 7.9.7 */ curl_easy_setopt(curl, CURLOPT_COOKIESESSION, config->cookiesession); Loading