diff options
author | Yichun Zhang <agentzh@gmail.com> | 2014-10-02 12:00:17 -0700 |
---|---|---|
committer | Yichun Zhang <agentzh@gmail.com> | 2014-10-02 12:00:17 -0700 |
commit | 52e4dc2f74fd032dace01acbe5eb29ddf7c1ad96 (patch) | |
tree | 90959823e1ccd6972db3ed8ffbda37e98dacc859 /src | |
parent | 4a2fba2d46d8d315a3dd3792d9f9c2d13e17a794 (diff) | |
download | nginx-52e4dc2f74fd032dace01acbe5eb29ddf7c1ad96.tar.gz nginx-52e4dc2f74fd032dace01acbe5eb29ddf7c1ad96.zip |
Core: fixed buffer overrun when hash max_size reached.
Diffstat (limited to 'src')
-rw-r--r-- | src/core/ngx_hash.c | 2 |
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; " |