| 725 | } |
| 726 | |
| 727 | static void one_remote_object(const struct object_id *oid) |
| 728 | { |
| 729 | struct object *obj; |
| 730 | |
| 731 | obj = lookup_object(the_repository, oid); |
| 732 | if (!obj) |
| 733 | obj = parse_object(the_repository, oid); |
| 734 | |
| 735 | /* Ignore remote objects that don't exist locally */ |
| 736 | if (!obj) |
| 737 | return; |
| 738 | |
| 739 | obj->flags |= REMOTE; |
| 740 | if (!object_list_contains(objects, obj)) |
| 741 | object_list_insert(obj, &objects); |
| 742 | } |
| 743 | |
| 744 | static void handle_lockprop_ctx(struct xml_ctx *ctx, int tag_closed) |
| 745 | { |
no test coverage detected