summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSergey Kandaurov <pluknet@nginx.com>2023-04-06 18:18:41 +0400
committerSergey Kandaurov <pluknet@nginx.com>2023-04-06 18:18:41 +0400
commitba15b2af1bc130725a1069c5c263779db350e9b0 (patch)
treec33d93cc3edcda1c7252209058a66b721006bc88
parentc1363247216bc5ac2862fa501d3f741ce7696422 (diff)
HTTP/3: fixed CANCEL_PUSH handling.
-rw-r--r--src/http/v3/ngx_http_v3_uni.c2
1 files changed, 1 insertions, 1 deletions
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;