summaryrefslogtreecommitdiff
path: root/zaphod32_hash.h
diff options
context:
space:
mode:
Diffstat (limited to 'zaphod32_hash.h')
-rw-r--r--zaphod32_hash.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/zaphod32_hash.h b/zaphod32_hash.h
index 31dd153def..bdbaa9a415 100644
--- a/zaphod32_hash.h
+++ b/zaphod32_hash.h
@@ -269,7 +269,10 @@ U32 zaphod32_hash_with_state(
return v0 ^ v2;
}
- if (len >= 8) {
+/* if (len >= 8) */ /* this block is only reached by a goto above, so this condition
+ is commented out, but if the above block is removed it would
+ be necessary to use this. */
+ {
zaphod32_read8:
len = key_len & 0x7;
end = key + key_len - len;