Fixed division by zero exception in ngx_hash_init().
The ngx_hash_init() function did not expect call with zero elements count, which caused FPE error on configs with an empty "types" block in http context and "types_hash_max_size" > 10000. Example configuration to reproduce: events { } http { types_hash_max_size 10001; types {} server {} }
This commit is contained in:
parent
07400a51a0
commit
a07b39def4
1 changed files with 1 additions and 1 deletions
|
@ -277,7 +277,7 @@ ngx_hash_init(ngx_hash_init_t *hinit, ngx_hash_key_t *names, ngx_uint_t nelts)
|
||||||
start = nelts / (bucket_size / (2 * sizeof(void *)));
|
start = nelts / (bucket_size / (2 * sizeof(void *)));
|
||||||
start = start ? start : 1;
|
start = start ? start : 1;
|
||||||
|
|
||||||
if (hinit->max_size > 10000 && hinit->max_size / nelts < 100) {
|
if (hinit->max_size > 10000 && nelts && hinit->max_size / nelts < 100) {
|
||||||
start = hinit->max_size - 1000;
|
start = hinit->max_size - 1000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue