mirror of
https://github.com/curl/curl.git
synced 2026-07-22 07:37:16 +03:00
parent
b41c28e70a
commit
f0f84d1251
3 changed files with 10 additions and 1 deletions
|
|
@ -1440,6 +1440,10 @@ bool Curl_compareheader(const char *headerline, /* line to check */
|
|||
do
|
||||
curlx_str_passblanks(&p);
|
||||
while(!curlx_str_single(&p, ','));
|
||||
/* trailing blanks may move the parsing point past the value end,
|
||||
then there is nothing left to match */
|
||||
if((size_t)(p - o) > len)
|
||||
break;
|
||||
len -= (p - o);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ Curl_compareheader unit test
|
|||
|
||||
<verify>
|
||||
<stdout mode="text">
|
||||
31 invokes
|
||||
33 invokes
|
||||
</stdout>
|
||||
</verify>
|
||||
</testcase>
|
||||
|
|
|
|||
|
|
@ -102,6 +102,11 @@ static CURLcode test_unit1625(const char *arg)
|
|||
{ "Encoding: super-nice", "Encoding:", "super-nice", TRUE },
|
||||
/* hyphenated second token */
|
||||
{ "Encoding: extra-good, super-nice", "Encoding:", "super-nice", TRUE },
|
||||
/* trailing blanks after the last comma */
|
||||
{ "Encoding: gzipped, ", "Encoding:", "gzip", FALSE },
|
||||
/* the scan must not cross into a second line */
|
||||
{ "Encoding: gzipped, \r\nEncoding: gzip, chunked", "Encoding:",
|
||||
"chunked", FALSE },
|
||||
};
|
||||
|
||||
for(i = 0; i < CURL_ARRAYSIZE(list); i++) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue