summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: ded0abc)
raw | patch | inline | side by side (parent: ded0abc)
author | Jeff King <peff@peff.net> | |
Sat, 19 Feb 2011 08:16:32 +0000 (03:16 -0500) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Tue, 22 Feb 2011 18:58:18 +0000 (10:58 -0800) |
We only need the size, which is much cheaper to get,
especially if it is a big binary file.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
especially if it is a big binary file.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
diff.c | patch | blob | history |
index 14a354147c6c61d369497626ce0bda8e5b4b3060..0d2ed00dad9879ef9209495f78930e0a066452fb 100644 (file)
--- a/diff.c
+++ b/diff.c
return 0;
}
+/* like fill_mmfile, but only for size, so we can avoid retrieving blob */
+static unsigned long diff_filespec_size(struct diff_filespec *one)
+{
+ if (!DIFF_FILE_VALID(one))
+ return 0;
+ diff_populate_filespec(one, 1);
+ return one->size;
+}
+
static int count_trailing_blank(mmfile_t *mf, unsigned ws_rule)
{
char *ptr = mf->ptr;
}
if (diff_filespec_is_binary(one) || diff_filespec_is_binary(two)) {
- if (fill_mmfile(&mf1, one) < 0 || fill_mmfile(&mf2, two) < 0)
- die("unable to read files to diff");
data->is_binary = 1;
- data->added = mf2.size;
- data->deleted = mf1.size;
+ data->added = diff_filespec_size(two);
+ data->deleted = diff_filespec_size(one);
}
else if (complete_rewrite) {