summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYichun Zhang <agentzh@gmail.com>2014-10-02 12:00:17 -0700
committerYichun Zhang <agentzh@gmail.com>2014-10-02 12:00:17 -0700
commit662ae6da6ba7ca43c5efe3feda5ec04f50d52070 (patch)
tree0660487f5b4be10ccd98b755a843afac93c942c1
parent55b299d72d1536f8a7b975ef4ebd2633bbf99365 (diff)
downloadnginx-662ae6da6ba7ca43c5efe3feda5ec04f50d52070.tar.gz
Core: fixed buffer overrun when hash max_size reached.
-rw-r--r--src/core/ngx_hash.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/ngx_hash.c b/src/core/ngx_hash.c
index c7bfed709..65ad83947 100644
--- a/src/core/ngx_hash.c
+++ b/src/core/ngx_hash.c
@@ -312,6 +312,8 @@ ngx_hash_init(ngx_hash_init_t *hinit, ngx_hash_key_t *names, ngx_uint_t nelts)
continue;
}
+ size--;
+
ngx_log_error(NGX_LOG_WARN, hinit->pool->log, 0,
"could not build optimal %s, you should increase "
"either %s_max_size: %i or %s_bucket_size: %i; "