diff options
| author | Patrick Steinhardt <ps@pks.im> | 2024-06-11 11:20:28 +0200 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2024-06-11 13:15:06 -0700 |
| commit | 748bd0943b696ba2b2942ce6e9d0dbfebf8b1fc3 (patch) | |
| tree | 6e9b81475b03466777c5007bc42beb79c1c2030f /t | |
| parent | a90a08961190dda2f664e102822fb6a7152e65d5 (diff) | |
| download | git-748bd0943b696ba2b2942ce6e9d0dbfebf8b1fc3.tar.gz | |
builtin/stash: fix leak in `show_stash()`
We leak the `revision_args()` variable. Fix this.
Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
| -rwxr-xr-x | t/t3420-rebase-autostash.sh | 1 | ||||
| -rwxr-xr-x | t/t3907-stash-show-config.sh | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/t/t3420-rebase-autostash.sh b/t/t3420-rebase-autostash.sh index 1a820f1481..63e400b89f 100755 --- a/t/t3420-rebase-autostash.sh +++ b/t/t3420-rebase-autostash.sh @@ -7,6 +7,7 @@ test_description='git rebase --autostash tests' 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 ' diff --git a/t/t3907-stash-show-config.sh b/t/t3907-stash-show-config.sh index 10914bba7b..7a2eb98b86 100755 --- a/t/t3907-stash-show-config.sh +++ b/t/t3907-stash-show-config.sh @@ -2,6 +2,7 @@ test_description='Test git stash show configuration.' +TEST_PASSES_SANITIZE_LEAK=true . ./test-lib.sh test_expect_success 'setup' ' |
