[PATCH] bisect: use "clear_commit_marks" after checking ancestors
From: Christian Couder <hidden>
Date: 2016-06-15 22:46:52
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Christian Couder <hidden>
Date: 2016-06-15 22:46:52
Subsystem:
the rest · Maintainer:
Linus Torvalds
instead of "unparse_commit", as it is enough to just clear flags. Signed-off-by: Christian Couder <redacted> --- bisect.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) As the patch series where "unparse_commit" is added and used is already in "next". Here is a patch to use "clear_commit_marks" instead. The patch that adds "unparse_commit" can be reverted from "next" after this one.
diff --git a/bisect.c b/bisect.c
index c43c120..18f9fa4 100644
--- a/bisect.c
+++ b/bisect.c@@ -771,7 +771,7 @@ static int check_ancestors(const char *prefix) /* Clean up objects used, as they will be reused. */ for (i = 0; i < pending_copy.nr; i++) { struct object *o = pending_copy.objects[i].item; - unparse_commit((struct commit *)o); + clear_commit_marks((struct commit *)o, ALL_REV_FLAGS); } return res;
--
1.6.3.GIT