diff options
author | Ævar Arnfjörð Bjarmason <avarab@gmail.com> | 2021-11-25 23:52:18 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-11-25 22:15:07 -0800 |
commit | 6def0ff8785eb12ccc24ceebea04355e13ae24b6 (patch) | |
tree | 6f2b0e8787a3bf0e6aac8f7d8309b5d41738c65b /t/helper | |
parent | upload-archive: use regular "struct child_process" pattern (diff) | |
download | tgif-6def0ff8785eb12ccc24ceebea04355e13ae24b6.tar.xz |
run-command API users: use strvec_pushv(), not argv assignment
Migrate those run-command API users that assign directly to the "argv"
member to use a strvec_pushv() of "args" instead.
In these cases it did not make sense to further refactor these
callers, e.g. daemon.c could be made to construct the arguments closer
to handle(), but that would require moving the construction from its
cmd_main() and pass "argv" through two intermediate functions.
It would be possible for a change like this to introduce a regression
if we were doing:
cp.argv = argv;
argv[1] = "foo";
And changed the code, as is being done here, to:
strvec_pushv(&cp.args, argv);
argv[1] = "foo";
But as viewing this change with the "-W" flag reveals none of these
functions modify variable that's being pushed afterwards in a way that
would introduce such a logic error.
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/helper')
-rw-r--r-- | t/helper/test-subprocess.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/helper/test-subprocess.c b/t/helper/test-subprocess.c index 92b69de635..ff22f2fa2c 100644 --- a/t/helper/test-subprocess.c +++ b/t/helper/test-subprocess.c @@ -15,6 +15,6 @@ int cmd__subprocess(int argc, const char **argv) argv++; } cp.git_cmd = 1; - cp.argv = (const char **)argv + 1; + strvec_pushv(&cp.args, (const char **)argv + 1); return run_command(&cp); } |