diff options
author | Sergey Kandaurov <pluknet@nginx.com> | 2022-06-14 10:39:58 +0400 |
---|---|---|
committer | Sergey Kandaurov <pluknet@nginx.com> | 2022-06-14 10:39:58 +0400 |
commit | 21506a2f851c9dbff4bee67fe5b6d199c83c799a (patch) | |
tree | b077725ec7a01b50ae37a19a033141a3a70afe5e | |
parent | f2fcc03d3aa6f0e0a457a994dbc743b5b63ad035 (diff) | |
download | nginx-21506a2f851c9dbff4bee67fe5b6d199c83c799a.tar.gz nginx-21506a2f851c9dbff4bee67fe5b6d199c83c799a.zip |
Perl: removed unused variables, forgotten in ef6a3a99a81a.
-rw-r--r-- | src/http/modules/perl/nginx.xs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/http/modules/perl/nginx.xs b/src/http/modules/perl/nginx.xs index da1227952..fd59e29ea 100644 --- a/src/http/modules/perl/nginx.xs +++ b/src/http/modules/perl/nginx.xs @@ -269,8 +269,7 @@ header_in(r, key) u_char *p, *lowcase_key, *value, sep; STRLEN len; ssize_t size; - ngx_uint_t i, n, hash; - ngx_array_t *a; + ngx_uint_t i, hash; ngx_list_part_t *part; ngx_table_elt_t *h, *header, **ph; ngx_http_header_t *hh; |