summaryrefslogtreecommitdiffstats
path: root/builtin/commit.c
diff options
context:
space:
mode:
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>2022-04-13 22:01:36 +0200
committerJunio C Hamano <gitster@pobox.com>2022-04-14 08:56:08 +0200
commit2108fe4a1976f95821e13503fd331f075da398c6 (patch)
tree9efbeb9ae5af4db1dc900ff36eabf41d451d3eb5 /builtin/commit.c
parentrevision.[ch]: provide and start using a release_revisions() (diff)
downloadgit-2108fe4a1976f95821e13503fd331f075da398c6.tar.xz
git-2108fe4a1976f95821e13503fd331f075da398c6.zip
revisions API users: add straightforward release_revisions()
Add a release_revisions() to various users of "struct rev_list" in those straightforward cases where we only need to add the release_revisions() call to the end of a block, and don't need to e.g. refactor anything to use a "goto cleanup" pattern. Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/commit.c')
-rw-r--r--builtin/commit.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin/commit.c b/builtin/commit.c
index 009a1de0a3..c7eda9bbb7 100644
--- a/builtin/commit.c
+++ b/builtin/commit.c
@@ -1123,6 +1123,7 @@ static const char *find_author_by_nickname(const char *name)
strbuf_release(&buf);
format_commit_message(commit, "%aN <%aE>", &buf, &ctx);
clear_mailmap(&mailmap);
+ release_revisions(&revs);
return strbuf_detach(&buf, NULL);
}
die(_("--author '%s' is not 'Name <email>' and matches no existing author"), name);