changeset 5906:548f704c1907

Scgi: do not push redundant NULL element into conf->params.
author Roman Arutyunyan <arut@nginx.com>
date Wed, 19 Nov 2014 17:33:21 +0300
parents 2f7e557eab5b
children 195561ef367f
files src/http/modules/ngx_http_scgi_module.c
diffstat 1 files changed, 0 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/src/http/modules/ngx_http_scgi_module.c
+++ b/src/http/modules/ngx_http_scgi_module.c
@@ -1670,13 +1670,6 @@ ngx_http_scgi_merge_params(ngx_conf_t *c
 
     *code = (uintptr_t) NULL;
 
-    code = ngx_array_push_n(conf->params, sizeof(uintptr_t));
-    if (code == NULL) {
-        return NGX_ERROR;
-    }
-
-    *code = (uintptr_t) NULL;
-
     conf->header_params = headers_names.nelts;
 
     hash.hash = &conf->headers_hash;