diff options
author | Stefan Beller <sbeller@google.com> | 2018-05-08 12:37:25 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-05-09 12:12:36 +0900 |
commit | 68f95d382b51b134b138c91f94adb8d9ef2f557a (patch) | |
tree | 3dba7b85cccb8f7e4911fabcb7fa87ad98612fa3 /object.c | |
parent | repository: introduce parsed objects field (diff) | |
download | tgif-68f95d382b51b134b138c91f94adb8d9ef2f557a.tar.xz |
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 'object.c')
-rw-r--r-- | object.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -138,7 +138,7 @@ static void grow_object_hash(void) the_repository->parsed_objects->obj_hash_size = new_hash_size; } -void *create_object(const unsigned char *sha1, void *o) +void *create_object_the_repository(const unsigned char *sha1, void *o) { struct object *obj = o; @@ -178,7 +178,8 @@ struct object *lookup_unknown_object(const unsigned char *sha1) { struct object *obj = lookup_object(sha1); if (!obj) - obj = create_object(sha1, alloc_object_node()); + obj = create_object(the_repository, sha1, + alloc_object_node()); return obj; } |