From: Sergey Kandaurov Date: Tue, 18 Aug 2020 14:11:32 +0000 (+0300) Subject: HTTP/3: fixed context storage in request body parser. X-Git-Tag: release-1.25.0~4^2~598 X-Git-Url: http://git.kaiwu.me/%7B@url%7D?a=commitdiff_plain;h=9a0fb643bfcea20f8a3ede222f9a1d8ec234a2cd;p=nginx.git HTTP/3: fixed context storage in request body parser. --- diff --git a/src/http/v3/ngx_http_v3_request.c b/src/http/v3/ngx_http_v3_request.c index a0259be11..24ad771d6 100644 --- a/src/http/v3/ngx_http_v3_request.c +++ b/src/http/v3/ngx_http_v3_request.c @@ -392,7 +392,7 @@ ngx_http_v3_parse_request_body(ngx_http_request_t *r, ngx_buf_t *b, goto failed; } - r->h3_parse = st; + ctx->h3_parse = st; } if (ctx->size) {