diff options
| author | Patrick Steinhardt <ps@pks.im> | 2024-09-30 11:14:24 +0200 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2024-09-30 11:23:09 -0700 |
| commit | 66893a14d0c0d3850227def321312a7290317610 (patch) | |
| tree | da83e1b9888a06a14b013391799ca4ac67efc376 /t | |
| parent | remote: fix leaking push reports (diff) | |
| download | git-66893a14d0c0d3850227def321312a7290317610.tar.gz git-66893a14d0c0d3850227def321312a7290317610.zip | |
builtin/send-pack: fix leaking list of push options
The list of push options is leaking. Plug the leak.
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/t5411-proc-receive-hook.sh | 1 | ||||
| -rwxr-xr-x | t/t5545-push-options.sh | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/t/t5411-proc-receive-hook.sh b/t/t5411-proc-receive-hook.sh index 92cf52c6d4..13d2d310a9 100755 --- a/t/t5411-proc-receive-hook.sh +++ b/t/t5411-proc-receive-hook.sh @@ -8,6 +8,7 @@ test_description='Test proc-receive hook' GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME +TEST_PASSES_SANITIZE_LEAK=true . ./test-lib.sh . "$TEST_DIRECTORY"/t5411/common-functions.sh diff --git a/t/t5545-push-options.sh b/t/t5545-push-options.sh index fb13549da7..64ce56d3aa 100755 --- a/t/t5545-push-options.sh +++ b/t/t5545-push-options.sh @@ -8,6 +8,7 @@ export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME GIT_TEST_FATAL_REGISTER_SUBMODULE_ODB=1 export GIT_TEST_FATAL_REGISTER_SUBMODULE_ODB +TEST_PASSES_SANITIZE_LEAK=true . ./test-lib.sh mk_repo_pair () { |
