| 226 | } |
| 227 | |
| 228 | static void finish_commit(struct commit *commit) |
| 229 | { |
| 230 | commit_list_free(commit->parents); |
| 231 | commit->parents = NULL; |
| 232 | free_commit_buffer(the_repository->parsed_objects, |
| 233 | commit); |
| 234 | } |
| 235 | |
| 236 | static void show_commit(struct commit *commit, void *data) |
| 237 | { |
no test coverage detected