From be135a51f567f7a63cc048e9697f3a7749a86ae8 Mon Sep 17 00:00:00 2001
From: Fabian Keil <fk@fabiankeil.de>
Date: Mon, 1 Jun 2009 18:57:37 +0200
Subject: [PATCH 05/10] Remove strange check for NULL.

---
 lib/cookie.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git lib/cookie.c lib/cookie.c
index 026f769..d4b508a 100644
--- lib/cookie.c
+++ lib/cookie.c
@@ -405,7 +405,7 @@ Curl_cookie_add(struct SessionHandle *data,
       }
 
       ptr=semiptr+1;
-      while(ptr && *ptr && ISBLANK(*ptr))
+      while(*ptr && ISBLANK(*ptr))
         ptr++;
       semiptr=strchr(ptr, ';'); /* now, find the next semicolon */
 
-- 
1.6.3.1


