mirror of
https://github.com/nginx/nginx.git
synced 2024-11-23 20:19:02 +08:00
HTTP/3: fixed CANCEL_PUSH handling.
This commit is contained in:
parent
c136324721
commit
ba15b2af1b
@ -747,7 +747,7 @@ ngx_http_v3_cancel_push(ngx_connection_t *c, uint64_t push_id)
|
||||
|
||||
for (q = ngx_queue_head(&h3c->pushing);
|
||||
q != ngx_queue_sentinel(&h3c->pushing);
|
||||
q = ngx_queue_next(&h3c->pushing))
|
||||
q = ngx_queue_next(q))
|
||||
{
|
||||
push = (ngx_http_v3_push_t *) q;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user