]> git.ipfire.org Git - thirdparty/git.git/commitdiff
bisect: call 'clear_commit_marks_all()' in 'bisect_next_all()'
authorMiriam Rubio <mirucam@gmail.com>
Thu, 24 Sep 2020 12:33:39 +0000 (14:33 +0200)
committerJunio C Hamano <gitster@pobox.com>
Thu, 24 Sep 2020 19:06:30 +0000 (12:06 -0700)
As there can be other revision walks after bisect_next_all(),
let's add a call to a function to clear all the marks at the
end of bisect_next_all().

Mentored-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Miriam Rubio <mirucam@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
bisect.c

index d42a3a3767d60bd36af1d57aabd8adc1be5fd378..c6aba2b9f29c65a05bffd29e31d3819b6e475dbf 100644 (file)
--- a/bisect.c
+++ b/bisect.c
@@ -1082,6 +1082,8 @@ enum bisect_error bisect_next_all(struct repository *r, const char *prefix)
                  "Bisecting: %d revisions left to test after this %s\n",
                  nr), nr, steps_msg);
        free(steps_msg);
+       /* Clean up objects used, as they will be reused. */
+       clear_commit_marks_all(ALL_REV_FLAGS);
 
        return bisect_checkout(bisect_rev, no_checkout);
 }