From: Daniel Stenberg Date: Tue, 30 Oct 2001 12:08:17 +0000 (+0000) Subject: prevent strdup()ing NULL -- Paul Harrington's report X-Git-Tag: curl-7_9_1~37 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6d35984286908e199e2ec9516ebbe322745bf2c2;p=thirdparty%2Fcurl.git prevent strdup()ing NULL -- Paul Harrington's report --- diff --git a/lib/cookie.c b/lib/cookie.c index bac0adb2fc..697081117d 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