| 823 | }; |
| 824 | |
| 825 | static void changed_submodule_data_clear(struct changed_submodule_data *cs_data) |
| 826 | { |
| 827 | oid_array_clear(&cs_data->new_commits); |
| 828 | free(cs_data->path); |
| 829 | } |
| 830 | |
| 831 | static void collect_changed_submodules_cb(struct diff_queue_struct *q, |
| 832 | struct diff_options *options UNUSED, |
no test coverage detected