| 1459 | } |
| 1460 | |
| 1461 | struct commit_extra_header *read_commit_extra_headers(struct commit *commit, |
| 1462 | const char **exclude) |
| 1463 | { |
| 1464 | struct commit_extra_header *extra = NULL; |
| 1465 | unsigned long size; |
| 1466 | const char *buffer = repo_get_commit_buffer(the_repository, commit, |
| 1467 | &size); |
| 1468 | extra = read_commit_extra_header_lines(buffer, size, exclude); |
| 1469 | repo_unuse_commit_buffer(the_repository, commit, buffer); |
| 1470 | return extra; |
| 1471 | } |
| 1472 | |
| 1473 | int for_each_mergetag(each_mergetag_fn fn, struct commit *commit, void *data) |
| 1474 | { |
no test coverage detected