From 6ef8028720174e11f3edc7150c5cd05e90e6d614 Mon Sep 17 00:00:00 2001 From: Andrei Belov Date: Wed, 14 May 2014 14:45:24 +0400 Subject: [PATCH] Removed unneeded and invalid initialization. --- nginx/modsecurity/ngx_http_modsecurity.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx/modsecurity/ngx_http_modsecurity.c b/nginx/modsecurity/ngx_http_modsecurity.c index fd8a69fa..aa5f8ec7 100644 --- a/nginx/modsecurity/ngx_http_modsecurity.c +++ b/nginx/modsecurity/ngx_http_modsecurity.c @@ -1091,7 +1091,7 @@ ngx_http_modsecurity_init_process(ngx_cycle_t *cycle) static ngx_int_t ngx_http_modsecurity_handler(ngx_http_request_t *r) { - ngx_int_t rc = NULL; + ngx_int_t rc; ngx_http_modsecurity_ctx_t *ctx = NULL; ngx_http_modsecurity_loc_conf_t *cf = NULL;