| 8339 | } |
| 8340 | |
| 8341 | void cbm_project_free_fields(cbm_project_t *p) { |
| 8342 | safe_str_free(&p->name); |
| 8343 | safe_str_free(&p->indexed_at); |
| 8344 | safe_str_free(&p->root_path); |
| 8345 | } |
| 8346 | |
| 8347 | void cbm_store_free_projects(cbm_project_t *projects, int count) { |
| 8348 | if (!projects) { |
no test coverage detected