diff options
Diffstat (limited to 'src/http/ngx_http_variables.c')
-rw-r--r-- | src/http/ngx_http_variables.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/http/ngx_http_variables.c b/src/http/ngx_http_variables.c index f00619d60..3969d7ef0 100644 --- a/src/http/ngx_http_variables.c +++ b/src/http/ngx_http_variables.c @@ -851,7 +851,8 @@ ngx_http_variables_init_vars(ngx_conf_t *cf) cmcf->variables_hash.name = "http variables"; if (ngx_hash_init(&cmcf->variables_hash, cf->pool, - cmcf->all_variables.elts, cmcf->all_variables.nelts) != NGX_OK) + cmcf->all_variables.elts, cmcf->all_variables.nelts) + != NGX_OK) { return NGX_ERROR; } |