mirror of
https://github.com/nginx/nginx.git
synced 2025-07-22 12:26:21 +08:00
Core: fixed potential buffer overrun when initializing hash.
Initial size as calculated from the number of elements may be bigger than max_size. If this happens, make sure to set size to max_size. Reported by Chris West.
This commit is contained in:
parent
06d72320ff
commit
0071fbb9e6
@ -312,7 +312,7 @@ ngx_hash_init(ngx_hash_init_t *hinit, ngx_hash_key_t *names, ngx_uint_t nelts)
|
||||
continue;
|
||||
}
|
||||
|
||||
size--;
|
||||
size = hinit->max_size;
|
||||
|
||||
ngx_log_error(NGX_LOG_WARN, hinit->pool->log, 0,
|
||||
"could not build optimal %s, you should increase "
|
||||
|
Loading…
Reference in New Issue
Block a user