| 1748 | } |
| 1749 | |
| 1750 | static int fetch_start_failure(struct strbuf *err UNUSED, |
| 1751 | void *cb, void *task_cb) |
| 1752 | { |
| 1753 | struct submodule_parallel_fetch *spf = cb; |
| 1754 | struct fetch_task *task = task_cb; |
| 1755 | |
| 1756 | spf->result = 1; |
| 1757 | |
| 1758 | fetch_task_free(task); |
| 1759 | return 0; |
| 1760 | } |
| 1761 | |
| 1762 | static int commit_missing_in_sub(const struct object_id *oid, void *data) |
| 1763 | { |
nothing calls this directly
no test coverage detected