aboutsummaryrefslogtreecommitdiff
path: root/src/http/v3/ngx_http_v3_request.c
diff options
context:
space:
mode:
authorSergey Kandaurov <pluknet@nginx.com>2020-08-18 17:11:32 +0300
committerSergey Kandaurov <pluknet@nginx.com>2020-08-18 17:11:32 +0300
commit9a0fb643bfcea20f8a3ede222f9a1d8ec234a2cd (patch)
tree260d426c8f5a472132634b2bf7f9cdda1a155230 /src/http/v3/ngx_http_v3_request.c
parentfd6df645ebf2de0ba7bcd8df2dfd7337f5ab516f (diff)
downloadnginx-9a0fb643bfcea20f8a3ede222f9a1d8ec234a2cd.tar.gz
nginx-9a0fb643bfcea20f8a3ede222f9a1d8ec234a2cd.zip
HTTP/3: fixed context storage in request body parser.
Diffstat (limited to 'src/http/v3/ngx_http_v3_request.c')
-rw-r--r--src/http/v3/ngx_http_v3_request.c2
1 files changed, 1 insertions, 1 deletions
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) {