1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

Fixed compilation when HTTP or cookies are disabled

This commit is contained in:
Dan Fandrich 2011-10-20 17:54:18 -07:00
parent 1399c3da0d
commit 90fcad63cb
2 changed files with 4 additions and 0 deletions

View File

@ -194,8 +194,10 @@ curl_share_cleanup(CURLSH *sh)
share->hostcache = NULL; share->hostcache = NULL;
} }
#if !defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_COOKIES)
if(share->cookies) if(share->cookies)
Curl_cookie_cleanup(share->cookies); Curl_cookie_cleanup(share->cookies);
#endif
#ifdef USE_SSL #ifdef USE_SSL
if(share->sslsession) { if(share->sslsession) {

View File

@ -2094,8 +2094,10 @@ CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option,
data->dns.hostcachetype = HCACHE_NONE; data->dns.hostcachetype = HCACHE_NONE;
} }
#if !defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_COOKIES)
if(data->share->cookies == data->cookies) if(data->share->cookies == data->cookies)
data->cookies = NULL; data->cookies = NULL;
#endif
if(data->share->sslsession == data->state.session) { if(data->share->sslsession == data->state.session) {
data->state.session = NULL; data->state.session = NULL;