diff options
author | Ævar Arnfjörð Bjarmason <avarab@gmail.com> | 2022-08-02 17:33:11 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-08-03 10:12:12 -0700 |
commit | c5365e93fd946c6bd82d0fe1a6083c78ddcce1ab (patch) | |
tree | b0fc87c9fc186c8632bb8048f294b56abe3584ec /bisect.c | |
parent | 350dc9f0e8974b6fcbdeb3808186c5a79c3e7386 (diff) | |
download | git-c5365e93fd946c6bd82d0fe1a6083c78ddcce1ab.tar.gz |
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 <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'bisect.c')
-rw-r--r-- | bisect.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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, |