changeset 9068:6c732b87ee10 quic

HTTP/3: fixed CANCEL_PUSH handling.
author Sergey Kandaurov <pluknet@nginx.com>
date Thu, 06 Apr 2023 18:18:41 +0400
parents f68fdb017141
children 9ea62b6250f2
files src/http/v3/ngx_http_v3_uni.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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;