[core,gateway] restore non-local value

This commit is contained in:
Armin Novak 2024-10-23 10:52:03 +02:00
parent 74b596758c
commit 9b32cc59b8
No known key found for this signature in database
GPG Key ID: 2CF4A2D2D3D72105

View File

@ -1030,10 +1030,10 @@ static BOOL http_response_parse_header(HttpResponse* response)
break;
}
if (!http_response_parse_header_field(response, name, value))
goto fail;
const int rc = http_response_parse_header_field(response, name, value);
*end_of_header = end_of_header_char;
if (!rc)
goto fail;
}
rc = TRUE;