about summary refs log tree commit diff
path: root/third_party/git/builtin/mktag.c
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/builtin/mktag.c')
-rw-r--r--third_party/git/builtin/mktag.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/third_party/git/builtin/mktag.c b/third_party/git/builtin/mktag.c
index 6fb7dc8578..4982d3a93e 100644
--- a/third_party/git/builtin/mktag.c
+++ b/third_party/git/builtin/mktag.c
@@ -29,8 +29,11 @@ static int verify_object(const struct object_id *oid, const char *expected_type)
 	const struct object_id *repl = lookup_replace_object(the_repository, oid);
 
 	if (buffer) {
-		if (type == type_from_string(expected_type))
-			ret = check_object_signature(repl, buffer, size, expected_type);
+		if (type == type_from_string(expected_type)) {
+			ret = check_object_signature(the_repository, repl,
+						     buffer, size,
+						     expected_type);
+		}
 		free(buffer);
 	}
 	return ret;