revisions API: have release_revisions() release "cmdline"
Extend the the release_revisions() function so that it frees the
"cmdline" in the "struct rev_info". This in combination with a
preceding change to free "commits" and "mailmap" means that we can
whitelist another test under "TEST_PASSES_SANITIZE_LEAK=true".
There was a proposal in [1] to do away with xstrdup()-ing this
add_rev_cmdline(), perhaps that would be worthwhile, but for now let's
just free() it.
We could also make that a "char *" in "struct rev_cmdline_entry"
itself, but since we own it let's expose it as a constant to outside
callers. I proposed that in [2] but have since changed my mind. See
14d30cdfc04 (ref-filter: fix memory leak in `free_array_item()`,
2019-07-10), c514c62a4fd (checkout: fix leak of non-existent branch
names, 2020-08-14) and other log history hits for "free((char *)" for
prior art.
This includes the tests we had false-positive passes on before my
6798b08e848 (perl Git.pm: don't ignore signalled failure in
_cmd_close(), 2022-02-01), now they pass for real.
Since there are 66 tests matching t/t[0-9]*git-svn*.sh it's easier to
list those that don't pass than to touch most of those 66. So let's
introduce a "TEST_FAILS_SANITIZE_LEAK=true", which if set in the tests
won't cause lib-git-svn.sh to set "TEST_PASSES_SANITIZE_LEAK=true.
This change also marks all the tests that we removed
"TEST_FAILS_SANITIZE_LEAK=true" from in an earlier commit due to
removing the UNLEAK() from cmd_format_patch(), we can now assert that
its API use doesn't leak any "struct rev_info" memory.
This change also made commit "t5503-tagfollow.sh" pass on current
master, but that would regress when combined with
ps/fetch-atomic-fixup's de004e848a9 (t5503: simplify setup of test
which exercises failure of backfill, 2022-03-03) (through no fault of
that topic, that change started using "git clone" in the test, which
has an outstanding leak). Let's leave that test out for now to avoid
in-flight semantic conflicts.
1. https://lore.kernel.org/git/YUj%2FgFRh6pwrZalY@carlos-mbp.lan/
2. https://lore.kernel.org/git/87o88obkb1.fsf@evledraar.gmail.com/
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Ævar Arnfjörð Bjarmason committedApr 13, 2022 at 22:01 UTC7a98d9ab00dc0a238b624b20c3884b50fe504e2b
36 files changed+58
revision.c
+10
index 622f0faecc..de4076e77d 100644--- a/revision.c+++ b/revision.c@@ -2926,6 +2926,15 @@ int setup_revisions(int argc, const char **argv, struct rev_info *revs, struct s return left; }+static void release_revisions_cmdline(struct rev_cmdline_info *cmdline)+{+ unsigned int i;++ for (i = 0; i < cmdline->nr; i++)+ free((char *)cmdline->rev[i].name);+ free(cmdline->rev);+}+ static void release_revisions_mailmap(struct string_list *mailmap) { if (!mailmap)@@ -2938,6 +2947,7 @@ void release_revisions(struct rev_info *revs) { free_commit_list(revs->commits); object_array_clear(&revs->pending);+ release_revisions_cmdline(&revs->cmdline); release_revisions_mailmap(revs->mailmap); }
t/lib-git-svn.sh
+4
index 2fde2353fd..ea28971e8e 100644--- a/t/lib-git-svn.sh+++ b/t/lib-git-svn.sh@@ -1,3 +1,7 @@+if test -z "$TEST_FAILS_SANITIZE_LEAK"+then+ TEST_PASSES_SANITIZE_LEAK=true+fi . ./test-lib.sh if test -n "$NO_SVN_TESTS"
index bc89371f53..e8a58b1589 100755--- a/t/t1060-object-corruption.sh+++ b/t/t1060-object-corruption.sh@@ -1,6 +1,7 @@ #!/bin/sh test_description='see how we handle various forms of corruption'+ . ./test-lib.sh # convert "1234abcd" to ".git/objects/12/34abcd"
t/t3303-notes-subtrees.sh
+1
index eac193757b..bc9b791d1b 100755--- a/t/t3303-notes-subtrees.sh+++ b/t/t3303-notes-subtrees.sh@@ -5,6 +5,7 @@ test_description='Test commit notes organized in subtrees' GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME+TEST_PASSES_SANITIZE_LEAK=true . ./test-lib.sh number_of_commits=100
t/t3305-notes-fanout.sh
+1
index 9976d787f4..64a9915761 100755--- a/t/t3305-notes-fanout.sh+++ b/t/t3305-notes-fanout.sh@@ -2,6 +2,7 @@ test_description='Test that adding/removing many notes triggers automatic fanout restructuring'+TEST_PASSES_SANITIZE_LEAK=true . ./test-lib.sh path_has_fanout() {
t/t3408-rebase-multi-line.sh
+1
index cde3562e3a..7b4607d72f 100755--- a/t/t3408-rebase-multi-line.sh+++ b/t/t3408-rebase-multi-line.sh@@ -5,6 +5,7 @@ test_description='rebasing a commit with multi-line first paragraph.' GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME+TEST_PASSES_SANITIZE_LEAK=true . ./test-lib.sh test_expect_success setup '
t/t4027-diff-submodule.sh
+1
index 295da987cc..40164ae07d 100755--- a/t/t4027-diff-submodule.sh+++ b/t/t4027-diff-submodule.sh@@ -2,6 +2,7 @@ test_description='difference in submodules'+TEST_PASSES_SANITIZE_LEAK=true . ./test-lib.sh . "$TEST_DIRECTORY"/lib-diff.sh
t/t4128-apply-root.sh
+1
index f6db5a79dd..ed94c90204 100755--- a/t/t4128-apply-root.sh+++ b/t/t4128-apply-root.sh@@ -2,6 +2,7 @@ test_description='apply same filename'+TEST_PASSES_SANITIZE_LEAK=true . ./test-lib.sh test_expect_success 'setup' '
t/t4212-log-corrupt.sh
+1
index 0244888a5a..30a219894b 100755--- a/t/t4212-log-corrupt.sh+++ b/t/t4212-log-corrupt.sh@@ -2,6 +2,7 @@ test_description='git log with invalid commit headers'+TEST_PASSES_SANITIZE_LEAK=true . ./test-lib.sh test_expect_success 'setup' '
index 01e1e8a8f7..185248a4cd 100755--- a/t/t9129-git-svn-i18n-commitencoding.sh+++ b/t/t9129-git-svn-i18n-commitencoding.sh@@ -4,6 +4,7 @@ test_description='git svn honors i18n.commitEncoding in config'+TEST_FAILS_SANITIZE_LEAK=true . ./lib-git-svn.sh compare_git_head_with () {
t/t9132-git-svn-broken-symlink.sh
+1
index aeceffaf7b..4d8d0584b7 100755--- a/t/t9132-git-svn-broken-symlink.sh+++ b/t/t9132-git-svn-broken-symlink.sh@@ -2,6 +2,7 @@ test_description='test that git handles an svn repository with empty symlinks'+TEST_FAILS_SANITIZE_LEAK=true . ./lib-git-svn.sh test_expect_success 'load svn dumpfile' ' svnadmin load "$rawsvnrepo" <<EOF
t/t9139-git-svn-non-utf8-commitencoding.sh
+1
index 22d80b0be2..b7f756b2b7 100755--- a/t/t9139-git-svn-non-utf8-commitencoding.sh+++ b/t/t9139-git-svn-non-utf8-commitencoding.sh@@ -4,6 +4,7 @@ test_description='git svn refuses to dcommit non-UTF8 messages'+TEST_FAILS_SANITIZE_LEAK=true . ./lib-git-svn.sh # ISO-2022-JP can pass for valid UTF-8, so skipping that in this test
t/t9146-git-svn-empty-dirs.sh
+2
index 80cb55fee7..79c26ed69c 100755--- a/t/t9146-git-svn-empty-dirs.sh+++ b/t/t9146-git-svn-empty-dirs.sh@@ -3,6 +3,8 @@ # Copyright (c) 2009 Eric Wong test_description='git svn creates empty directories'++TEST_FAILS_SANITIZE_LEAK=true . ./lib-git-svn.sh test_expect_success 'initialize repo' '
t/t9148-git-svn-propset.sh
+1
index aebb28995e..6cc76a07b3 100755--- a/t/t9148-git-svn-propset.sh+++ b/t/t9148-git-svn-propset.sh@@ -5,6 +5,7 @@ test_description='git svn propset tests'+TEST_FAILS_SANITIZE_LEAK=true . ./lib-git-svn.sh test_expect_success 'setup propset via import' '
index 36c6b1a12f..9cf7a1427a 100755--- a/t/t9160-git-svn-preserve-empty-dirs.sh+++ b/t/t9160-git-svn-preserve-empty-dirs.sh@@ -9,6 +9,7 @@ This test uses git to clone a Subversion repository that contains empty directories, and checks that corresponding directories are created in the local Git repository with placeholder files.'+TEST_FAILS_SANITIZE_LEAK=true . ./lib-git-svn.sh GIT_REPO=git-svn-repo