Fix undefined behaviour when left-shifting signed integers.
Found by -fsanitize=undefined.
This commit is contained in:
parent
de7d9ee437
commit
b396585383
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ static uint32_t hash_function(const void *p, size_t len) {
|
||||||
uint32_t hash = 0;
|
uint32_t hash = 0;
|
||||||
while(true) {
|
while(true) {
|
||||||
for(int i = len > 4 ? 4 : len; --i;)
|
for(int i = len > 4 ? 4 : len; --i;)
|
||||||
hash += q[len - i] << (8 * i);
|
hash += (uint32_t)q[len - i] << (8 * i);
|
||||||
hash *= 0x9e370001UL; // Golden ratio prime.
|
hash *= 0x9e370001UL; // Golden ratio prime.
|
||||||
if(len <= 4)
|
if(len <= 4)
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue