prevent strdup()ing NULL -- Paul Harrington's report
diff --git a/lib/cookie.c b/lib/cookie.c
index bac0adb..6970811 100644
--- a/lib/cookie.c
+++ b/lib/cookie.c
@@ -198,7 +198,7 @@
 
     if(NULL == co->domain)
       /* no domain given in the header line, set the default now */
-      co->domain=strdup(domain);
+      co->domain=domain?strdup(domain):NULL;
   }
   else {
     /* This line is NOT a HTTP header style line, we do offer support for