aboutsummaryrefslogtreecommitdiff
path: root/src/http/modules/ngx_http_limit_req_module.c
diff options
context:
space:
mode:
authorValentin Bartenev <vbart@nginx.com>2012-08-08 12:03:46 +0000
committerValentin Bartenev <vbart@nginx.com>2012-08-08 12:03:46 +0000
commit86dd5bde4590e60289cf2ae94afe2f9ab5d65f3c (patch)
treeecdea6f9f6c1b5bd3267726344d76159956b23ce /src/http/modules/ngx_http_limit_req_module.c
parent2af80d5fab3e3962baf38d65eebcfe79312ae32e (diff)
downloadnginx-86dd5bde4590e60289cf2ae94afe2f9ab5d65f3c.tar.gz
nginx-86dd5bde4590e60289cf2ae94afe2f9ab5d65f3c.zip
Added three missing checks for NULL after ngx_array_push() calls.
Found by Coverity.
Diffstat (limited to 'src/http/modules/ngx_http_limit_req_module.c')
-rw-r--r--src/http/modules/ngx_http_limit_req_module.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/http/modules/ngx_http_limit_req_module.c b/src/http/modules/ngx_http_limit_req_module.c
index 18db71549..3f9910e71 100644
--- a/src/http/modules/ngx_http_limit_req_module.c
+++ b/src/http/modules/ngx_http_limit_req_module.c
@@ -937,6 +937,9 @@ ngx_http_limit_req(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
}
limit = ngx_array_push(&lrcf->limits);
+ if (limit == NULL) {
+ return NGX_CONF_ERROR;
+ }
limit->shm_zone = shm_zone;
limit->burst = burst * 1000;