diff options
author | Ævar Arnfjörð Bjarmason <avarab@gmail.com> | 2023-02-06 20:08:13 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-02-07 01:03:53 +0100 |
commit | 0c10ed19c4806e9a75e63fd5185d4d4c15f99c63 (patch) | |
tree | 2426b19571366655917d756c26706668ecfd3c12 /t/t3432-rebase-fast-forward.sh | |
parent | builtin/rebase.c: free() "options.strategy_opts" (diff) | |
download | git-0c10ed19c4806e9a75e63fd5185d4d4c15f99c63.tar.xz git-0c10ed19c4806e9a75e63fd5185d4d4c15f99c63.zip |
commit.c: free() revs.commit in get_fork_point()
Fix a memory leak that's been with us since d96855ff517 (merge-base:
teach "--fork-point" mode, 2013-10-23).
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '')
-rwxr-xr-x | t/t3432-rebase-fast-forward.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/t/t3432-rebase-fast-forward.sh b/t/t3432-rebase-fast-forward.sh index 5086e14c02..7f1a5dd3de 100755 --- a/t/t3432-rebase-fast-forward.sh +++ b/t/t3432-rebase-fast-forward.sh @@ -8,6 +8,7 @@ test_description='ensure rebase fast-forwards commits when possible' 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 ' |