MCPcopy Create free account
hub / github.com/git/git / bloom_keyvec_free

Function bloom_keyvec_free

bloom.c:321–328  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

319}
320
321void 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
330static int pathmap_cmp(const void *hashmap_cmp_fn_data UNUSED,
331 const struct hashmap_entry *eptr,

Callers 1

Calls 1

bloom_key_clearFunction · 0.85

Tested by

no test coverage detected