From: Daniel Stenberg Date: Thu, 28 Jul 2005 21:53:09 +0000 (+0000) Subject: reset the numcookies counter too (I missed it in the previous commit) X-Git-Tag: upstream/7.37.1~11027 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e358a24a75d42714795200c9528c3f5ba90cdab2;p=platform%2Fupstream%2Fcurl.git reset the numcookies counter too (I missed it in the previous commit) --- diff --git a/lib/url.c b/lib/url.c index 2cef9e4..bb8aa18 100644 --- a/lib/url.c +++ b/lib/url.c @@ -788,6 +788,7 @@ CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option, /* clear all cookies */ Curl_cookie_freelist(data->cookies->cookies); data->cookies->cookies = NULL; + data->cookies->numcookies = 0; } break; }