object: add repository argument to lookup_object
Add a repository argument to allow callers of lookup_object to be more specific about which repository to handle. This is a small mechanical change; it doesn't change the implementation to handle repositories other than the_repository yet. As with the previous commits, use a macro to catch callers passing a repository other than the_repository at compile time. Signed-off-by: Stefan Beller <sbeller@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
109cd76dd3
commit
5abddd1eb7
@ -570,7 +570,7 @@ static int get_reachable_list(struct object_array *src,
|
||||
if (parse_oid_hex(namebuf, &sha1, &p) || *p != '\n')
|
||||
break;
|
||||
|
||||
o = lookup_object(sha1.hash);
|
||||
o = lookup_object(the_repository, sha1.hash);
|
||||
if (o && o->type == OBJ_COMMIT) {
|
||||
o->flags &= ~TMP_MARK;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user