add-interactive: use repo_parse_tree_indirect()
1b374ad71f (add-interactive: stop using `the_repository`, 2024-12-17) replaced explicit uses of the_repository. parse_tree_indirect() uses it internally, though, so call repo_parse_tree_indirect() instead and hand it the correct repository. Signed-off-by: René Scharfe <l.s.r@web.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
René Scharfe committed
Jan 9, 2026 at 22:30 UTC
548aaf9d06002e8c7acef383c810a398da9917fc
1 file changed
+1
-1
add-interactive.c
+1
-1
index 68fc09547d..95ec5a89f8 100644
--- a/add-interactive.c
+++ b/add-interactive.c
@@ -840,7 +840,7 @@ static int run_revert(struct add_i_state *s, const struct pathspec *ps,
if (is_initial)
oidcpy(&oid, s->r->hash_algo->empty_tree);
else {
- tree = parse_tree_indirect(&oid);
+ tree = repo_parse_tree_indirect(s->r, &oid);
if (!tree) {
res = error(_("Could not parse HEAD^{tree}"));
goto finish_revert;