| 1028 | } |
| 1029 | |
| 1030 | void odb_close(struct object_database *o) |
| 1031 | { |
| 1032 | struct odb_source *source; |
| 1033 | for (source = o->sources; source; source = source->next) |
| 1034 | odb_source_close(source); |
| 1035 | close_commit_graph(o); |
| 1036 | } |
| 1037 | |
| 1038 | static void odb_free_sources(struct object_database *o) |
| 1039 | { |
no test coverage detected