From: Roman Arutyunyan Date: Fri, 27 Mar 2020 12:50:42 +0000 (+0300) Subject: Fixed buffer overflow. X-Git-Tag: release-1.25.0~4^2~818 X-Git-Url: http://www.kaiwu.me/postgresql/commit/static/gitweb.js?a=commitdiff_plain;h=81f7cff632d7db267be42f5451c6e1f29d021685;p=nginx.git Fixed buffer overflow. --- diff --git a/src/http/v3/ngx_http_v3_request.c b/src/http/v3/ngx_http_v3_request.c index 542fc387d..b00b93ce2 100644 --- a/src/http/v3/ngx_http_v3_request.c +++ b/src/http/v3/ngx_http_v3_request.c @@ -263,7 +263,7 @@ ngx_http_v3_create_header(ngx_http_request_t *r) return NULL; } - len = 0; + len = 2; if (r->headers_out.status == NGX_HTTP_OK) { len += ngx_http_v3_encode_prefix_int(NULL, 25, 6);