diff options
author | Sergey Kandaurov <pluknet@nginx.com> | 2020-07-02 17:35:57 +0300 |
---|---|---|
committer | Sergey Kandaurov <pluknet@nginx.com> | 2020-07-02 17:35:57 +0300 |
commit | 0ebcffcf1409a03d2437ad18d65387448382620d (patch) | |
tree | 9db8b5fc3921bd94066fd3e4264ba34962d59168 /src | |
parent | d839fee75f5247c160c0b7b927dc45a3122cb6a2 (diff) | |
download | nginx-0ebcffcf1409a03d2437ad18d65387448382620d.tar.gz nginx-0ebcffcf1409a03d2437ad18d65387448382620d.zip |
HTTP/3: fixed prefix in decoding Section Acknowledgement.
Diffstat (limited to 'src')
-rw-r--r-- | src/http/v3/ngx_http_v3_parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |