| 428 | static struct type_and_oid_list *edge_tree_list; |
| 429 | |
| 430 | static void show_edge(struct commit *commit) |
| 431 | { |
| 432 | struct tree *t = repo_get_commit_tree(edge_repo, commit); |
| 433 | |
| 434 | if (!t) |
| 435 | return; |
| 436 | |
| 437 | if (commit->object.flags & UNINTERESTING) |
| 438 | t->object.flags |= UNINTERESTING; |
| 439 | |
| 440 | if (t->object.flags & SEEN) |
| 441 | return; |
| 442 | t->object.flags |= SEEN; |
| 443 | |
| 444 | oid_array_append(&edge_tree_list->oids, &t->object.oid); |
| 445 | } |
| 446 | |
| 447 | static int setup_pending_objects(struct path_walk_info *info, |
| 448 | struct path_walk_context *ctx) |
no test coverage detected