diff --git a/src/util/src/hash.c b/src/util/src/hash.c index 55a5db707740cbb93f6bc31f7fe82806a54020cd..f6f07000608a15daec45f9406d4658b799badfc3 100644 --- a/src/util/src/hash.c +++ b/src/util/src/hash.c @@ -53,6 +53,7 @@ typedef struct SHashObj { size_t size; // number of elements in hash table _hash_fn_t hashFp; // hash function _equal_fn_t equalFp; // equal function + _hash_free_fn_t freeFp; // hash node free callback function SRWLatch lock; // read-write spin lock SHashLockTypeE type; // lock type bool enableUpdate; // enable update