diff options
author | Daniel Stenberg <daniel@haxx.se> | 2008-01-23 22:22:12 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2008-01-23 22:22:12 +0000 |
commit | c914e6ea5dad4dc6281b189a9b1f20bc77c223c8 (patch) | |
tree | bd7ffea19fa9d6cc6ac7cd3769acdbcc6428b93d /lib/cookie.h | |
parent | 79cb74f03a4fa5512812cc8c8e35d735a099b35c (diff) | |
download | curl-c914e6ea5dad4dc6281b189a9b1f20bc77c223c8.tar.gz |
"Igor" pointed out that CURLOPT_COOKIELIST set to "ALL" leaked memory, and so
did "SESS". Fixed now.
Diffstat (limited to 'lib/cookie.h')
-rw-r--r-- | lib/cookie.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/cookie.h b/lib/cookie.h index ea4c83602..7fbc72e8a 100644 --- a/lib/cookie.h +++ b/lib/cookie.h @@ -7,7 +7,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2006, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2008, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -91,7 +91,7 @@ struct CookieInfo *Curl_cookie_init(struct SessionHandle *data, const char *, struct CookieInfo *, bool); struct Cookie *Curl_cookie_getlist(struct CookieInfo *, const char *, const char *, bool); -void Curl_cookie_freelist(struct Cookie *); +void Curl_cookie_freelist(struct Cookie *cookies, bool cookiestoo); void Curl_cookie_clearall(struct CookieInfo *cookies); void Curl_cookie_clearsess(struct CookieInfo *cookies); void Curl_cookie_cleanup(struct CookieInfo *); |