From: Sergey Kandaurov Date: Thu, 6 Apr 2023 14:18:41 +0000 (+0400) Subject: HTTP/3: fixed CANCEL_PUSH handling. X-Git-Tag: release-1.25.0~4^2~22 X-Git-Url: http://www.kaiwu.me/postgresql/commit/static/gitweb.js?a=commitdiff_plain;h=ba15b2af1bc130725a1069c5c263779db350e9b0;p=nginx.git 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 index f00caaad8..22ddaf3eb 100644 --- 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 *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;