mirror of
https://github.com/fluencelabs/redis
synced 2025-04-04 00:31:03 +00:00
fix boundary case for _dictNextPower
This commit is contained in:
parent
d036abe27d
commit
413d8239df
@ -949,7 +949,7 @@ static unsigned long _dictNextPower(unsigned long size)
|
|||||||
{
|
{
|
||||||
unsigned long i = DICT_HT_INITIAL_SIZE;
|
unsigned long i = DICT_HT_INITIAL_SIZE;
|
||||||
|
|
||||||
if (size >= LONG_MAX) return LONG_MAX;
|
if (size >= LONG_MAX) return LONG_MAX + 1LU;
|
||||||
while(1) {
|
while(1) {
|
||||||
if (i >= size)
|
if (i >= size)
|
||||||
return i;
|
return i;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user