]> git.ipfire.org Git - thirdparty/git.git/blobdiff - fast-import.c
t5318: avoid unnecessary command substitutions
[thirdparty/git.git] / fast-import.c
index 4d55910ab9a0634a553c01643035ef9afe6034c7..3ea5781029de661fb083fcd99acbae7c39c22904 100644 (file)
@@ -1724,8 +1724,10 @@ static int update_branch(struct branch *b)
        if (!force_update && !is_null_oid(&old_oid)) {
                struct commit *old_cmit, *new_cmit;
 
-               old_cmit = lookup_commit_reference_gently(&old_oid, 0);
-               new_cmit = lookup_commit_reference_gently(&b->oid, 0);
+               old_cmit = lookup_commit_reference_gently(the_repository,
+                                                         &old_oid, 0);
+               new_cmit = lookup_commit_reference_gently(the_repository,
+                                                         &b->oid, 0);
                if (!old_cmit || !new_cmit)
                        return error("Branch %s is missing commits.", b->name);