Author :
Azat Khuzhin
Date :
2024-11-02 21:41:32
Hash :78eb3059 Message :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