aboutsummaryrefslogtreecommitdiff
path: root/lib/cookie.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-10-30 12:08:17 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-10-30 12:08:17 +0000
commit6d35984286908e199e2ec9516ebbe322745bf2c2 (patch)
tree6d8734407393922c5d15658aef076eddf1736399 /lib/cookie.c
parentc046dc904ccf5d7e0a9e244497996f294bdcb6e4 (diff)
prevent strdup()ing NULL -- Paul Harrington's report
Diffstat (limited to 'lib/cookie.c')
-rw-r--r--lib/cookie.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/cookie.c b/lib/cookie.c
index bac0adb2f..697081117 100644
--- a/lib/cookie.c
+++ b/lib/cookie.c
@@ -198,7 +198,7 @@ Curl_cookie_add(struct CookieInfo *c,
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