summaryrefslogtreecommitdiff
path: root/src/atom.c
diff options
context:
space:
mode:
authorRan Benita <ran@unusedvar.com>2019-11-09 13:47:16 +0200
committerRan Benita <ran@unusedvar.com>2019-11-09 13:50:59 +0200
commitadbd9c6f0819a3ddd5a06237238e9becdb036e17 (patch)
tree3267012d7da7a57b09fc72948f29975a2967f396 /src/atom.c
parent9ebf97d70636f751182e4bc99e8e6a483698747c (diff)
downloadxorg-lib-libxkbcommon-adbd9c6f0819a3ddd5a06237238e9becdb036e17.tar.gz
atom: correct iteration count in hash function
Fixup of ccab349 - unlike the commit message, hash a byte twice instead of zero times, which is probably better. This is how it was before. Signed-off-by: Ran Benita <ran@unusedvar.com>
Diffstat (limited to 'src/atom.c')
-rw-r--r--src/atom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/atom.c b/src/atom.c
index 43faecb..e78c68f 100644
--- a/src/atom.c
+++ b/src/atom.c
@@ -78,7 +78,7 @@ static inline uint32_t
hash_buf(const char *string, size_t len)
{
uint32_t hash = 2166136261u;
- for (size_t i = 0; i < len / 2; i++) {
+ for (size_t i = 0; i < (len + 1) / 2; i++) {
hash ^= (uint8_t) string[i];
hash *= 0x01000193;
hash ^= (uint8_t) string[len - 1 - i];