Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
multi-pack-index: load into memory
[gitweb.git]
/
bundle.c
diff --git
a/bundle.c
b/bundle.c
index 4fde31d210df29a590bf9773b119367f84964ccc..160bbfdc64ec2876bdc685d253bf537d1c739c1f 100644
(file)
--- a/
bundle.c
+++ b/
bundle.c
@@
-222,7
+222,7
@@
static int is_tag_in_date_range(struct object *tag, struct rev_info *revs)
if (revs->max_age == -1 && revs->min_age == -1)
goto out;
- buf = read_
sha1_file(tag->oid.hash
, &type, &size);
+ buf = read_
object_file(&tag->oid
, &type, &size);
if (!buf)
goto out;
line = memmem(buf, size, "\ntagger ", 8);