| 3502 | } |
| 3503 | |
| 3504 | void free_diffstat_info(struct diffstat_t *diffstat) |
| 3505 | { |
| 3506 | int i; |
| 3507 | for (i = 0; i < diffstat->nr; i++) |
| 3508 | free_diffstat_file(diffstat->files[i]); |
| 3509 | free(diffstat->files); |
| 3510 | } |
| 3511 | |
| 3512 | struct checkdiff_t { |
| 3513 | const char *filename; |
no test coverage detected