Commit 7675b00a authored by kmiku7's avatar kmiku7 Committed by antirez
Browse files

fix boundary case for _dictNextPower

parent f31d9b12
...@@ -940,7 +940,7 @@ static unsigned long _dictNextPower(unsigned long size) ...@@ -940,7 +940,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;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment