]> git.ipfire.org Git - thirdparty/git.git/commitdiff
ls-remote: leakfix for not clearing server_options
authorXing Xin <xingxin.xx@bytedance.com>
Tue, 8 Oct 2024 03:38:19 +0000 (03:38 +0000)
committerJunio C Hamano <gitster@pobox.com>
Tue, 8 Oct 2024 17:22:10 +0000 (10:22 -0700)
Ensure `server_options` is properly cleared using `string_list_clear()`
in `builtin/ls-remote.c:cmd_ls_remote`.

Although we cannot yet enable `TEST_PASSES_SANITIZE_LEAK=true` for
`t/t5702-protocol-v2.sh` due to other existing leaks, this fix ensures
that "git-ls-remote" related server options tests pass the sanitize leak
check:

  ...
  ok 12 - server-options are sent when using ls-remote
  ok 13 - server-options from configuration are used by ls-remote
  ...

Signed-off-by: Xing Xin <xingxin.xx@bytedance.com>
Reviewed-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/ls-remote.c

index f723b3bf3bb5d9b8b086a96231eb9a6bb9956d7c..423318f87ec5f954ab62cdd9f3d0d0ddf56cacb8 100644 (file)
@@ -173,5 +173,6 @@ int cmd_ls_remote(int argc,
        transport_ls_refs_options_release(&transport_options);
 
        strvec_clear(&pattern);
+       string_list_clear(&server_options, 0);
        return status;
 }