]> git.ipfire.org Git - thirdparty/git.git/commitdiff
sequencer: don't use die_errno() on refs_resolve_ref_unsafe() failure
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>
Wed, 26 Jan 2022 14:37:00 +0000 (15:37 +0100)
committerJunio C Hamano <gitster@pobox.com>
Wed, 26 Jan 2022 23:58:38 +0000 (15:58 -0800)
Change code that was faithfully migrated to the new "resolve_errno"
API in ed90f04155d (refs API: make resolve_ref_unsafe() not set errno,
2021-10-16) to stop caring about the errno at all.

When we fail to resolve "HEAD" after the sequencer runs it doesn't
really help to say what the "errno" value is, since the fake backend
errno may or may not reflect anything real about the state of the
".git/HEAD". With the upcoming reftable backend this fakery will
become even more pronounced.

So let's just die() instead of die_errno() here. This will also help
simplify the refs_resolve_ref_unsafe() API. This was the only user of
it that wasn't ignoring the "failure_errno" output parameter.

Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
sequencer.c

index 6abd72160ccd46791d5a262021804e07ab9ea37f..03cdf548d728aa32e20e9834b0b5fa4f02e41571 100644 (file)
@@ -1281,7 +1281,7 @@ void print_commit_summary(struct repository *r,
        struct strbuf author_ident = STRBUF_INIT;
        struct strbuf committer_ident = STRBUF_INIT;
        struct ref_store *refs;
-       int resolve_errno;
+       int ignore_errno;
 
        commit = lookup_commit(r, oid);
        if (!commit)
@@ -1333,11 +1333,9 @@ void print_commit_summary(struct repository *r,
 
        refs = get_main_ref_store(the_repository);
        head = refs_resolve_ref_unsafe(refs, "HEAD", 0, NULL, NULL,
-                                      &resolve_errno);
-       if (!head) {
-               errno = resolve_errno;
-               die_errno(_("unable to resolve HEAD after creating commit"));
-       }
+                                      &ignore_errno);
+       if (!head)
+               die(_("unable to resolve HEAD after creating commit"));
        if (!strcmp(head, "HEAD"))
                head = _("detached HEAD");
        else