Removed unused variable.
This commit is contained in:
parent
8c69d52595
commit
587adbda18
1 changed files with 1 additions and 3 deletions
|
@ -245,7 +245,7 @@ ngx_chain_t *
|
|||
ngx_http_v3_create_header(ngx_http_request_t *r)
|
||||
{
|
||||
u_char *p;
|
||||
size_t len, hlen, n;
|
||||
size_t len, n;
|
||||
ngx_buf_t *b;
|
||||
ngx_uint_t i, j;
|
||||
ngx_chain_t *hl, *cl, *bl;
|
||||
|
@ -553,8 +553,6 @@ ngx_http_v3_create_header(ngx_http_request_t *r)
|
|||
hl->buf = b;
|
||||
hl->next = cl;
|
||||
|
||||
hlen = 1 + ngx_http_v3_encode_varlen_int(NULL, len);
|
||||
|
||||
if (r->headers_out.content_length_n >= 0) {
|
||||
len = 1 + ngx_http_v3_encode_varlen_int(NULL,
|
||||
r->headers_out.content_length_n);
|
||||
|
|
Loading…
Reference in a new issue