/
uis
/
git
/
x
/
uis
/
git
/
git.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
object: add repository argument to create_object
[git/git.git]
/
commit.c
diff --git
a/commit.c
b/commit.c
index
ca474a7
..
9106acf
100644
(file)
--- a/
commit.c
+++ b/
commit.c
@@
-50,7
+50,8
@@
struct commit *lookup_commit(const struct object_id *oid)
{
struct object *obj = lookup_object(oid->hash);
if (!obj)
- return create_object(oid->hash, alloc_commit_node());
+ return create_object(the_repository, oid->hash,
+ alloc_commit_node());
return object_as_type(obj, OBJ_COMMIT, 0);
}