diff options
author | Daniel Stenberg <daniel@haxx.se> | 2007-04-27 08:30:48 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2007-04-27 08:30:48 +0000 |
commit | 7a0e0c36c549218f74ac5f1d4b679667135a97da (patch) | |
tree | b52021b0a73cd878f45c0c0a65b4a8bcdeea0ac0 /lib | |
parent | 61edee979f2e34a3957da65f6329d5c24a47fc72 (diff) |
Move the explictit free of the range string to Curl_close() from Curl_disconnect()
since it easy-handle related and not connection-related.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/url.c | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -310,6 +310,9 @@ CURLcode Curl_close(struct SessionHandle *data) } } + if(data->reqdata.rangestringalloc) + free(data->reqdata.range); + /* Free the pathbuffer */ Curl_safefree(data->reqdata.pathbuffer); Curl_safefree(data->reqdata.proto.generic); @@ -1827,12 +1830,6 @@ CURLcode Curl_disconnect(struct connectdata *conn) NULL, Curl_scan_cache_used); #endif - /* cleanups done even if the connection is re-used */ - if(data->reqdata.rangestringalloc) { - free(data->reqdata.range); - data->reqdata.rangestringalloc = FALSE; - } - Curl_expire(data, 0); /* shut off timers */ Curl_hostcache_prune(data); /* kill old DNS cache entries */ |