mirror of
https://github.com/curl/curl.git
synced 2026-05-30 09:07:33 +03:00
quiche: fix lookup of transfer at multi
- refs #11449 where weirdness in quiche multi connection tranfers was observed - fixes lookup of transfer for a quiche event to take the connection into account - formerly, a transfer with the same stream_id, but on another connection could be found Closes #11462
This commit is contained in:
parent
8edfdf9cf1
commit
3b4ecdd0a8
1 changed files with 1 additions and 1 deletions
|
|
@ -329,7 +329,7 @@ static struct Curl_easy *get_stream_easy(struct Curl_cfilter *cf,
|
|||
else {
|
||||
DEBUGASSERT(data->multi);
|
||||
for(sdata = data->multi->easyp; sdata; sdata = sdata->next) {
|
||||
if(H3_STREAM_ID(sdata) == stream3_id) {
|
||||
if((sdata->conn == data->conn) && H3_STREAM_ID(sdata) == stream3_id) {
|
||||
return sdata;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue