| 821 | } |
| 822 | |
| 823 | void close_commit_graph(struct object_database *o) |
| 824 | { |
| 825 | if (!o->commit_graph) |
| 826 | return; |
| 827 | |
| 828 | clear_commit_graph_data_slab(&commit_graph_data_slab); |
| 829 | deinit_bloom_filters(); |
| 830 | free_commit_graph(o->commit_graph); |
| 831 | o->commit_graph = NULL; |
| 832 | } |
| 833 | |
| 834 | static int bsearch_graph(struct commit_graph *g, const struct object_id *oid, uint32_t *pos) |
| 835 | { |
no test coverage detected