aboutsummaryrefslogtreecommitdiff
path: root/log-tree.c
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2014-06-10 17:40:46 -0400
committerJunio C Hamano <gitster@pobox.com>2014-06-13 12:08:17 -0700
commita97934d8205772ffd2a528a9e970af7dec725012 (patch)
tree3b05fc0118344324608d2ae16e0006639ccdf74b /log-tree.c
parent152ff1ccebd822fd97f27d2a6c3fa2058f088fd8 (diff)
downloadgit-a97934d8205772ffd2a528a9e970af7dec725012.tar.gz
git-a97934d8205772ffd2a528a9e970af7dec725012.tar.xz
use get_cached_commit_buffer where appropriate
Some call sites check commit->buffer to see whether we have a cached buffer, and if so, do some work with it. In the long run we may want to switch these code paths to make their decision on a different boolean flag (because checking the cache may get a little more expensive in the future). But for now, we can easily support them by converting the calls to use get_cached_commit_buffer. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'log-tree.c')
-rw-r--r--log-tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/log-tree.c b/log-tree.c
index cf2f86c86..e9ef8abd3 100644
--- a/log-tree.c
+++ b/log-tree.c
@@ -588,7 +588,7 @@ void show_log(struct rev_info *opt)
show_mergetag(opt, commit);
}
- if (!commit->buffer)
+ if (!get_cached_commit_buffer(commit))
return;
if (opt->show_notes) {