| 8229 | } |
| 8230 | |
| 8231 | void cbm_project_free_fields(cbm_project_t *p) { |
| 8232 | safe_str_free(&p->name); |
| 8233 | safe_str_free(&p->indexed_at); |
| 8234 | safe_str_free(&p->root_path); |
| 8235 | } |
| 8236 | |
| 8237 | void cbm_store_free_projects(cbm_project_t *projects, int count) { |
| 8238 | if (!projects) { |
no test coverage detected