MCPcopy Create free account
hub / github.com/DeusData/codebase-memory-mcp / cbm_store_free_coverage

Function cbm_store_free_coverage

src/store/store.c:3303–3313  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3301}
3302
3303void cbm_store_free_coverage(cbm_coverage_row_t *rows, int count) {
3304 if (!rows) {
3305 return;
3306 }
3307 for (int i = 0; i < count; i++) {
3308 free((char *)rows[i].rel_path);
3309 free((char *)rows[i].kind);
3310 free((char *)rows[i].detail);
3311 }
3312 free(rows);
3313}
3314
3315/* ── FindNodesByFileOverlap ─────────────────────────────────────── */
3316

Callers 12

cov_rebuild_shadow_graphFunction · 0.85
coverage_query_rowsFunction · 0.85
cbm_store_coverage_getFunction · 0.85
add_coverage_reportFunction · 0.85
run_closure_deltaFunction · 0.85
test_pipeline.cFile · 0.85
test_store_nodes.cFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected