From: René Scharfe Date: Fri, 9 Jan 2026 21:30:15 +0000 (+0100) Subject: bloom: use repo_parse_tree() X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=83131ed25c01ae1862d5e99ad349cb8eead454c0;p=thirdparty%2Fgit.git bloom: use repo_parse_tree() Use the passed in repository instead of the implicit the_repository when parsing the tree. Signed-off-by: René Scharfe Signed-off-by: Junio C Hamano --- diff --git a/bloom.c b/bloom.c index 2d7b951e5b..77a6fddf72 100644 --- a/bloom.c +++ b/bloom.c @@ -354,7 +354,7 @@ static void init_truncated_large_filter(struct bloom_filter *filter, static int has_entries_with_high_bit(struct repository *r, struct tree *t) { - if (parse_tree(t)) + if (repo_parse_tree(r, t)) return 1; if (!(t->object.flags & VISITED)) {