diff options
-rw-r--r-- | lib/cookie.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/cookie.c b/lib/cookie.c index 0374f94c1..1d7defd84 100644 --- a/lib/cookie.c +++ b/lib/cookie.c @@ -438,7 +438,7 @@ Curl_cookie_add(struct Curl_easy *data, /* too long individual name or contents, or too long combination of name + contents. Chrome and Firefox support 4095 or 4096 bytes combo. */ - free(co); + freecookie(co); infof(data, "oversized cookie dropped, name/val %d + %d bytes\n", nlen, len); return NULL; |