diff options
author | Stefan Beller <sbeller@google.com> | 2018-06-29 03:21:52 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-06-29 19:43:38 +0200 |
commit | 5abddd1eb72ca47cc84a9fc888c30ebaadde2eec (patch) | |
tree | 3aa159b370a0ecc3ac88e8b3453c049f72af15c3 /tree.c | |
parent | object: add repository argument to parse_object (diff) | |
download | git-5abddd1eb72ca47cc84a9fc888c30ebaadde2eec.tar.xz git-5abddd1eb72ca47cc84a9fc888c30ebaadde2eec.zip |
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>
Diffstat (limited to 'tree.c')
-rw-r--r-- | tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -197,7 +197,7 @@ int read_tree(struct tree *tree, int stage, struct pathspec *match, struct tree *lookup_tree(const struct object_id *oid) { - struct object *obj = lookup_object(oid->hash); + struct object *obj = lookup_object(the_repository, oid->hash); if (!obj) return create_object(the_repository, oid->hash, alloc_tree_node(the_repository)); |