diff options
author | Sergey Kandaurov <pluknet@nginx.com> | 2020-08-18 17:11:32 +0300 |
---|---|---|
committer | Sergey Kandaurov <pluknet@nginx.com> | 2020-08-18 17:11:32 +0300 |
commit | 9a0fb643bfcea20f8a3ede222f9a1d8ec234a2cd (patch) | |
tree | 260d426c8f5a472132634b2bf7f9cdda1a155230 /src/http/v3/ngx_http_v3_request.c | |
parent | fd6df645ebf2de0ba7bcd8df2dfd7337f5ab516f (diff) | |
download | nginx-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.c | 2 |
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) { |