help.c: guard config parser from value=NULL
help.format configuration expects a string value Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
e08404a82d
commit
b51b2bb4c3
2
help.c
2
help.c
@ -40,6 +40,8 @@ static void parse_help_format(const char *format)
|
|||||||
static int git_help_config(const char *var, const char *value)
|
static int git_help_config(const char *var, const char *value)
|
||||||
{
|
{
|
||||||
if (!strcmp(var, "help.format")) {
|
if (!strcmp(var, "help.format")) {
|
||||||
|
if (!value)
|
||||||
|
return config_error_nonbool(var);
|
||||||
help_default_format = xstrdup(value);
|
help_default_format = xstrdup(value);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user