diff mbox series

[2/2] bisect: clear flags in passed repository

Message ID e9f1dbc1-065b-dcf7-efc1-7709681de5f1@web.de (mailing list archive)
State New, archived
Headers show
Series [1/2] object: allow clear_commit_marks_all() to handle any repo | expand

Commit Message

René Scharfe Oct. 31, 2020, 12:31 p.m. UTC
69d2cfe6e8 (bisect.c: remove the_repository reference,
2018-11-10) kept the implicit the_repository reference lurking
in clear_commit_marks_all().  Replace it as well.

Signed-off-by: René Scharfe <l.s.r@web.de>
---
 bisect.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--
2.29.2
diff mbox series

Patch

diff --git a/bisect.c b/bisect.c
index ee7f7bd017..453bf10a0c 100644
--- a/bisect.c
+++ b/bisect.c
@@ -1090,7 +1090,7 @@  enum bisect_error bisect_next_all(struct repository *r, const char *prefix)
 		  nr), nr, steps_msg);
 	free(steps_msg);
 	/* Clean up objects used, as they will be reused. */
-	clear_commit_marks_all(the_repository, ALL_REV_FLAGS);
+	clear_commit_marks_all(r, ALL_REV_FLAGS);

 	return bisect_checkout(bisect_rev, no_checkout);
 }