зеркало из https://github.com/microsoft/git.git
wt-status.c: guard config parser from value=NULL
status.color.* and color.status.* expect a string value Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Родитель
180483c5c9
Коммит
451d36bb25
|
@ -402,6 +402,8 @@ int git_status_config(const char *k, const char *v)
|
|||
}
|
||||
if (!prefixcmp(k, "status.color.") || !prefixcmp(k, "color.status.")) {
|
||||
int slot = parse_status_slot(k, 13);
|
||||
if (!v)
|
||||
return config_error_nonbool(k);
|
||||
color_parse(v, k, wt_status_colors[slot]);
|
||||
return 0;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче