From: Daniel Stenberg Date: Sat, 19 Dec 2009 19:20:26 +0000 (+0000) Subject: fixed a precaution check in the cookie code, pointed out by Julien Chaffraix X-Git-Tag: curl-7_20_0~245 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=240fa29e94c63f4b86ac2715b706277415c863b4;p=thirdparty%2Fcurl.git fixed a precaution check in the cookie code, pointed out by Julien Chaffraix --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 467f22a097..25ca3a116e 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -48,6 +48,6 @@ advice from friends like these: Marco Maggi, Camille Moncelier, Claes Jakobsson, Kevin Baughman, Marc Kleine-Budde, Jad Chamcham, Bjorn Augustsson, David Byron, Markus Koetter, Chad Monroe, Martin Storsjo, Siegfried Gyuricsko, - Jon Nelson, + Jon Nelson, Julien Chaffraix Thanks! (and sorry if I forgot to mention someone) diff --git a/lib/cookie.c b/lib/cookie.c index b76394cfa1..7be8fc3c59 100644 --- a/lib/cookie.c +++ b/lib/cookie.c @@ -909,7 +909,7 @@ void Curl_cookie_clearsess(struct CookieInfo *cookies) { struct Cookie *first, *curr, *next, *prev = NULL; - if(!cookies->cookies || !cookies->cookies) + if(!cookies || !cookies->cookies) return; first = curr = prev = cookies->cookies;