On Mon, Aug 03, 2020 at 02:57:09PM -0400, Taylor Blau wrote: > diff --git a/revision.c b/revision.c > index 6de29cdf7a..e244beed05 100644 > --- a/revision.c > +++ b/revision.c > @@ -684,7 +684,7 @@ static void prepare_to_use_bloom_filter(struct rev_info *revs) > if (!revs->repo->objects->commit_graph) > return; > > - revs->bloom_filter_settings = revs->repo->objects->commit_graph->bloom_filter_settings; > + revs->bloom_filter_settings = get_bloom_filter_settings(revs->repo); > if (!revs->bloom_filter_settings) > return; I think you could get rid of the revs->repo->objects->commit_graph check above now, as get_bloom_filter_settings() would return NULL if there is no commit_graph at all. -Peff