From: Ævar Arnfjörð Bjarmason Date: Tue, 2 Aug 2022 15:33:11 +0000 (+0200) Subject: bisect.c: add missing "goto" for release_revisions() X-Git-Tag: v2.38.0-rc0~82^2~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c5365e93fd946c6bd82d0fe1a6083c78ddcce1ab;p=thirdparty%2Fgit.git bisect.c: add missing "goto" for release_revisions() Add a missing "goto cleanup", this fixes a bug in f196c1e908d (revisions API users: use release_revisions() needing REV_INFO_INIT, 2022-04-13). Signed-off-by: Ævar Arnfjörð Bjarmason Signed-off-by: Junio C Hamano --- diff --git a/bisect.c b/bisect.c index b63669cc9d..421470bfa5 100644 --- a/bisect.c +++ b/bisect.c @@ -1054,7 +1054,7 @@ enum bisect_error bisect_next_all(struct repository *r, const char *prefix) */ res = error_if_skipped_commits(tried, NULL); if (res < 0) - return res; + goto cleanup; printf(_("%s was both %s and %s\n"), oid_to_hex(current_bad_oid), term_good,