http: avoid length underflow in Curl_compareheader

Closes #22338
This commit is contained in:
Graham Campbell 2026-07-16 16:30:19 +01:00 committed by Daniel Stenberg
parent b41c28e70a
commit f0f84d1251
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
3 changed files with 10 additions and 1 deletions

View file

@ -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);
}
}