| 8322 | } |
| 8323 | |
| 8324 | void cbm_project_free_fields(cbm_project_t *p) { |
| 8325 | safe_str_free(&p->name); |
| 8326 | safe_str_free(&p->indexed_at); |
| 8327 | safe_str_free(&p->root_path); |
| 8328 | } |
| 8329 | |
| 8330 | void cbm_store_free_projects(cbm_project_t *projects, int count) { |
| 8331 | if (!projects) { |
no test coverage detected