Skip to content

Commit 6c62f01

Browse files
derrickstoleegitster
authored andcommitted
for-each-repo: do nothing on empty config
'git for-each-repo --config=X' should return success without calling any subcommands when the config key 'X' has no value. The current implementation instead segfaults. A user could run into this issue if they used 'git maintenance start' to initialize their cron schedule using 'git for-each-repo --config=maintenance.repo ...' but then using 'git maintenance unregister' to remove the config option. (Note: 'git maintenance stop' would remove the config _and_ remove the cron schedule.) Add a simple test to ensure this works. Use 'git help --no-such-option' as the potential subcommand to ensure that we will hit a failure if the subcommand is ever run. Reported-by: Andreas Bühmann <[email protected]> Helped-by: Eric Sunshine <[email protected]> Helped-by: Junio C Hamano <[email protected]> Signed-off-by: Derrick Stolee <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 71ca53e commit 6c62f01

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

builtin/for-each-repo.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,13 @@ int cmd_for_each_repo(int argc, const char **argv, const char *prefix)
5151
values = repo_config_get_value_multi(the_repository,
5252
config_key);
5353

54+
/*
55+
* Do nothing on an empty list, which is equivalent to the case
56+
* where the config variable does not exist at all.
57+
*/
58+
if (!values)
59+
return 0;
60+
5461
for (i = 0; !result && i < values->nr; i++)
5562
result = run_command_on_repo(values->items[i].string, &args);
5663

t/t0068-for-each-repo.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,10 @@ test_expect_success 'run based on configured value' '
2727
grep again message
2828
'
2929

30+
test_expect_success 'do nothing on empty config' '
31+
# the whole thing would fail if for-each-ref iterated even
32+
# once, because "git help --no-such-option" would fail
33+
git for-each-repo --config=bogus.config -- help --no-such-option
34+
'
35+
3036
test_done

0 commit comments

Comments
 (0)