Fix: non-initialized mutex (crash under Windows)

This commit is contained in:
Vladimir Dubrovin 2026-05-22 16:57:53 +03:00
parent 7c1bc48c85
commit 16af910f3a

View File

@ -9,6 +9,7 @@ struct hashentry {
void destroyhashtable(struct hashtable *ht){
if(!ht->ihashtable) return;
_3proxy_mutex_lock(&ht->hash_mutex);
if(ht->ihashtable){
free(ht->ihashtable);