# HG changeset patch # User Sergey Kandaurov # Date 1680790721 -14400 # Node ID 6c732b87ee102385ab8ce1c94357b7c13767d65c # Parent f68fdb01714121017a91a60370c074e59b730239 HTTP/3: fixed CANCEL_PUSH handling. diff --git a/src/http/v3/ngx_http_v3_uni.c b/src/http/v3/ngx_http_v3_uni.c --- a/src/http/v3/ngx_http_v3_uni.c +++ b/src/http/v3/ngx_http_v3_uni.c @@ -747,7 +747,7 @@ ngx_http_v3_cancel_push(ngx_connection_t 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;