diff options
author | Stefan Beller <sbeller@google.com> | 2018-05-08 21:37:25 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-05-09 05:12:36 +0200 |
commit | 68f95d382b51b134b138c91f94adb8d9ef2f557a (patch) | |
tree | 3dba7b85cccb8f7e4911fabcb7fa87ad98612fa3 /tag.c | |
parent | repository: introduce parsed objects field (diff) | |
download | git-68f95d382b51b134b138c91f94adb8d9ef2f557a.tar.xz git-68f95d382b51b134b138c91f94adb8d9ef2f557a.zip |
object: add repository argument to create_object
Add a repository argument to allow the callers of create_object
to be more specific about which repository to act on. This is a small
mechanical change; it doesn't change the implementation to handle
repositories other than the_repository yet.
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Stefan Beller <sbeller@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'tag.c')
-rw-r--r-- | tag.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -93,7 +93,8 @@ struct tag *lookup_tag(const struct object_id *oid) { struct object *obj = lookup_object(oid->hash); if (!obj) - return create_object(oid->hash, alloc_tag_node()); + return create_object(the_repository, oid->hash, + alloc_tag_node()); return object_as_type(obj, OBJ_TAG, 0); } |