diff options
| author | René Scharfe <l.s.r@web.de> | 2026-01-09 22:30:15 +0100 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2026-01-09 18:36:16 -0800 |
| commit | 83131ed25c01ae1862d5e99ad349cb8eead454c0 (patch) | |
| tree | 23c4ff649577a7e465f824e1cef829762d7d40f1 | |
| parent | 548aaf9d06002e8c7acef383c810a398da9917fc (diff) | |
| download | git-83131ed25c01ae1862d5e99ad349cb8eead454c0.tar.xz | |
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 <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
| -rw-r--r-- | bloom.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)) { |
