| 666 | } |
| 667 | |
| 668 | void parse_commit_or_die(struct commit *item) |
| 669 | { |
| 670 | if (repo_parse_commit(the_repository, item)) |
| 671 | die("unable to parse commit %s", |
| 672 | item ? oid_to_hex(&item->object.oid) : "(null)"); |
| 673 | } |
| 674 | |
| 675 | int find_commit_subject(const char *commit_buffer, const char **subject) |
| 676 | { |
no test coverage detected