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

Function cbm_store_free_coverage

src/store/store.c:3286–3296  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3284}
3285
3286void cbm_store_free_coverage(cbm_coverage_row_t *rows, int count) {
3287 if (!rows) {
3288 return;
3289 }
3290 for (int i = 0; i < count; i++) {
3291 free((char *)rows[i].rel_path);
3292 free((char *)rows[i].kind);
3293 free((char *)rows[i].detail);
3294 }
3295 free(rows);
3296}
3297
3298/* ── FindNodesByFileOverlap ─────────────────────────────────────── */
3299

Callers 11

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