Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lib/bloom: Fix bloom hashing on 32-bit architectures
There was an implicit cast from guint64 to gsize (which is 32-bit on armhf, for example) before the modulus arithmetic which safely narrows the index. Fix that by using a guint64 intermediate variable and making the cast explicit. Signed-off-by: Philip Withnall <[email protected]> Closes: #1231 Approved by: cgwalters
- Loading branch information