summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sal/rtl/alloc_cache.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/sal/rtl/alloc_cache.cxx b/sal/rtl/alloc_cache.cxx
index fd8a8c03205e..1529626e0537 100644
--- a/sal/rtl/alloc_cache.cxx
+++ b/sal/rtl/alloc_cache.cxx
@@ -130,7 +130,9 @@ rtl_cache_hash_rescale (
cache->m_hash_table = new_table;
cache->m_hash_size = new_size;
- cache->m_hash_shift = highbit(cache->m_hash_size) - 1;
+ const auto bit = highbit(cache->m_hash_size);
+ assert(bit > 0);
+ cache->m_hash_shift = bit - 1;
for (i = 0; i < old_size; i++)
{