| 176 | } |
| 177 | |
| 178 | static void files_ref_store_release(struct ref_store *ref_store) |
| 179 | { |
| 180 | struct files_ref_store *refs = files_downcast(ref_store, 0, "release"); |
| 181 | free_ref_cache(refs->loose); |
| 182 | free(refs->gitcommondir); |
| 183 | ref_store_release(refs->packed_ref_store); |
| 184 | free(refs->packed_ref_store); |
| 185 | } |
| 186 | |
| 187 | static void files_reflog_path(struct files_ref_store *refs, |
| 188 | struct strbuf *sb, |
nothing calls this directly
no test coverage detected