Commit 78eb305975ed68d8bc159e46e6164afff1a74747

Azat Khuzhin 2024-11-02T21:41:32

Fix unlikely (for libevent) UB in HT_GROW() The reason it is not possible for libevent is that: a) it is unlikely to have 1610612741 elements b) growing is done incrementally (i.e. only internally by HT_INSERT) and in this case the UB is not possible Fixes: https://github.com/libevent/libevent/issues/1312