diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-02-20 15:18:38 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-02-21 08:38:00 +0100 |
commit | 0c76795cafe0fccab41b3adc1be08cb81d55024f (patch) | |
tree | ec686629077ff076cc3c543f3518bdaf7ad4e50b /lib/cookie.c | |
parent | 150f45e8d1cce189a5b0b963243a8563d3d14b8e (diff) | |
download | curl-0c76795cafe0fccab41b3adc1be08cb81d55024f.tar.gz |
cleanup: comment typos
Spotted by 'codespell'
Closes #4957
Diffstat (limited to 'lib/cookie.c')
-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 2dfdc733f..cf18745bc 100644 --- a/lib/cookie.c +++ b/lib/cookie.c @@ -1048,7 +1048,7 @@ Curl_cookie_add(struct Curl_easy *data, *clist = *co; /* then store all the new data */ - free(co); /* free the newly alloced memory */ + free(co); /* free the newly allocated memory */ co = clist; /* point to the previous struct instead */ /* We have replaced a cookie, now skip the rest of the list but |