summaryrefslogtreecommitdiff
path: root/revision.c
diff options
context:
space:
mode:
authorTaylor Blau <me@ttaylorr.com>2020-07-01 13:27:29 (GMT)
committerJunio C Hamano <gitster@pobox.com>2020-07-01 21:17:43 (GMT)
commitf3c2a36810d5322747ad573f7e2b8404d4f67ead (patch)
tree26f5c4be224f280814b0c52b79634a5282d1cc09 /revision.c
parentdc8e95ba7c7a3b2f2d7cc82a1f66d19e10874218 (diff)
downloadgit-f3c2a36810d5322747ad573f7e2b8404d4f67ead.zip
git-f3c2a36810d5322747ad573f7e2b8404d4f67ead.tar.gz
git-f3c2a36810d5322747ad573f7e2b8404d4f67ead.tar.bz2
revision: empty pathspecs should not use Bloom filters
The prepare_to_use_bloom_filter() method was not intended to be called on an empty pathspec. However, 'git log -- .' and 'git log' are subtly different: the latter reports all commits while the former will simplify commits that do not change the root tree. This means that the path used to construct the bloom_key might be empty, and that value is not added to the Bloom filter during construction. That means that the results are likely incorrect! To resolve the issue, be careful about the length of the path and stop filling Bloom filters. To be completely sure we do not use them, drop the pointer to the bloom_filter_settings from the commit-graph. That allows our test to look at the trace2 logs to verify no Bloom filter statistics are reported. Signed-off-by: Taylor Blau <me@ttaylorr.com> Signed-off-by: Derrick Stolee <dstolee@microsoft.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'revision.c')
-rw-r--r--revision.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/revision.c b/revision.c
index ddf09ab..667ca36 100644
--- a/revision.c
+++ b/revision.c
@@ -702,6 +702,10 @@ static void prepare_to_use_bloom_filter(struct rev_info *revs)
path = pi->match;
len = strlen(path);
+ if (!len) {
+ revs->bloom_filter_settings = NULL;
+ return;
+ }
revs->bloom_key = xmalloc(sizeof(struct bloom_key));
fill_bloom_key(path, len, revs->bloom_key, revs->bloom_filter_settings);