content_encoding: replace ISSPACE with ISBLANK

This commit is contained in:
Daniel Stenberg 2025-02-28 23:38:43 +01:00
parent 7e1bea28d2
commit e11efd9310
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -758,7 +758,7 @@ CURLcode Curl_build_unencoding_stack(struct Curl_easy *data,
name = enclist;
for(namelen = 0; *enclist && *enclist != ','; enclist++)
if(!ISSPACE(*enclist))
if(!ISBLANK(*enclist))
namelen = enclist - name + 1;
if(namelen) {