Skip to content
Snippets Groups Projects
Commit 240fa29e authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

fixed a precaution check in the cookie code, pointed out by Julien Chaffraix

parent 010fe5ac
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment