From 73500267eec76480432186c14041ef7d296dfb1f Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 14 Aug 2003 15:01:52 +0000 Subject: activate the new memory limit tests if requested only set cookiejar if selected --- src/main.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index 54955916c..a8afbe9a8 100644 --- a/src/main.c +++ b/src/main.c @@ -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 */ @@ -3057,7 +3062,8 @@ 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 */ - curl_easy_setopt(curl, CURLOPT_COOKIEJAR, config->cookiejar); + 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); -- cgit v1.2.3