| 2756 | } |
| 2757 | |
| 2758 | static int commit_graph_checksum_valid(struct commit_graph *g) |
| 2759 | { |
| 2760 | return hashfile_checksum_valid(g->hash_algo, |
| 2761 | g->data, g->data_len); |
| 2762 | } |
| 2763 | |
| 2764 | static int verify_one_commit_graph(struct commit_graph *g, |
| 2765 | struct progress *progress, |
no test coverage detected