| 319 | } |
| 320 | |
| 321 | void bloom_keyvec_free(struct bloom_keyvec *vec) |
| 322 | { |
| 323 | if (!vec) |
| 324 | return; |
| 325 | for (size_t nr = 0; nr < vec->count; nr++) |
| 326 | bloom_key_clear(&vec->key[nr]); |
| 327 | free(vec); |
| 328 | } |
| 329 | |
| 330 | static int pathmap_cmp(const void *hashmap_cmp_fn_data UNUSED, |
| 331 | const struct hashmap_entry *eptr, |
no test coverage detected