From 0ebcffcf1409a03d2437ad18d65387448382620d Mon Sep 17 00:00:00 2001 From: Sergey Kandaurov Date: Thu, 2 Jul 2020 17:35:57 +0300 Subject: HTTP/3: fixed prefix in decoding Section Acknowledgement. --- src/http/v3/ngx_http_v3_parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/http/v3/ngx_http_v3_parse.c') diff --git a/src/http/v3/ngx_http_v3_parse.c b/src/http/v3/ngx_http_v3_parse.c index 27484e92a..da9826ced 100644 --- a/src/http/v3/ngx_http_v3_parse.c +++ b/src/http/v3/ngx_http_v3_parse.c @@ -1465,7 +1465,7 @@ ngx_http_v3_parse_decoder(ngx_connection_t *c, void *data, u_char ch) case sw_ack_header: - if (ngx_http_v3_parse_prefix_int(c, &st->pint, 6, ch) != NGX_DONE) { + if (ngx_http_v3_parse_prefix_int(c, &st->pint, 7, ch) != NGX_DONE) { break; } -- cgit