| 4655 | } |
| 4656 | |
| 4657 | void diff_free_filespec_data(struct diff_filespec *s) |
| 4658 | { |
| 4659 | if (!s) |
| 4660 | return; |
| 4661 | |
| 4662 | diff_free_filespec_blob(s); |
| 4663 | FREE_AND_NULL(s->cnt_data); |
| 4664 | } |
| 4665 | |
| 4666 | static void prep_temp_blob(struct index_state *istate, |
| 4667 | const char *path, struct diff_tempfile *temp, |
no test coverage detected