mirror of
https://github.com/curl/curl.git
synced 2026-07-22 22:57:21 +03:00
quiche: when ingress processing fails, return that error code
Instead of a general CURLE_RECV_ERROR. Reported in Joshua's sarif data Closes #18730
This commit is contained in:
parent
dec661c81c
commit
771dd9d9e7
1 changed files with 2 additions and 2 deletions
|
|
@ -865,9 +865,9 @@ static CURLcode cf_quiche_recv(struct Curl_cfilter *cf, struct Curl_easy *data,
|
|||
goto out;
|
||||
}
|
||||
|
||||
if(cf_process_ingress(cf, data)) {
|
||||
result = cf_process_ingress(cf, data);
|
||||
if(result) {
|
||||
CURL_TRC_CF(data, cf, "cf_recv, error on ingress");
|
||||
result = CURLE_RECV_ERROR;
|
||||
goto out;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue