Fix the hashing function for OSC dispatch
This commit is contained in:
parent
406afc8aba
commit
92b01eecb2
1 changed files with 1 additions and 1 deletions
|
|
@ -72,7 +72,7 @@ static uint64_t hashMessagePath(const char* path, const char* sig)
|
||||||
++path;
|
++path;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
h = hashByte(',');
|
h = hashByte(',', h);
|
||||||
while (unsigned char c = *sig++)
|
while (unsigned char c = *sig++)
|
||||||
h = hashByte(c, h);
|
h = hashByte(c, h);
|
||||||
return h;
|
return h;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue