Loading lib/cookie.c +2 −6 Original line number Original line Diff line number Diff line Loading @@ -1218,7 +1218,6 @@ struct Cookie *Curl_cookie_getlist(struct CookieInfo *c, { { struct Cookie *newco; struct Cookie *newco; struct Cookie *co; struct Cookie *co; time_t now = time(NULL); struct Cookie *mainco = NULL; struct Cookie *mainco = NULL; size_t matches = 0; size_t matches = 0; bool is_ip; bool is_ip; Loading @@ -1236,11 +1235,8 @@ struct Cookie *Curl_cookie_getlist(struct CookieInfo *c, co = c->cookies[myhash]; co = c->cookies[myhash]; while(co) { while(co) { /* only process this cookie if it is not expired or had no expire /* if the cookie requires we're secure we must only continue if we are! */ date AND that if the cookie requires we're secure we must only if(co->secure?secure:TRUE) { continue if we are! */ if((!co->expires || (co->expires > now)) && (co->secure?secure:TRUE)) { /* now check if the domain is correct */ /* now check if the domain is correct */ if(!co->domain || if(!co->domain || Loading Loading
lib/cookie.c +2 −6 Original line number Original line Diff line number Diff line Loading @@ -1218,7 +1218,6 @@ struct Cookie *Curl_cookie_getlist(struct CookieInfo *c, { { struct Cookie *newco; struct Cookie *newco; struct Cookie *co; struct Cookie *co; time_t now = time(NULL); struct Cookie *mainco = NULL; struct Cookie *mainco = NULL; size_t matches = 0; size_t matches = 0; bool is_ip; bool is_ip; Loading @@ -1236,11 +1235,8 @@ struct Cookie *Curl_cookie_getlist(struct CookieInfo *c, co = c->cookies[myhash]; co = c->cookies[myhash]; while(co) { while(co) { /* only process this cookie if it is not expired or had no expire /* if the cookie requires we're secure we must only continue if we are! */ date AND that if the cookie requires we're secure we must only if(co->secure?secure:TRUE) { continue if we are! */ if((!co->expires || (co->expires > now)) && (co->secure?secure:TRUE)) { /* now check if the domain is correct */ /* now check if the domain is correct */ if(!co->domain || if(!co->domain || Loading