archive-tar.c: guard config parser from value=NULL
Signed-off-by: Junio C Hamano <gitster@pobox.com>maint
parent
b26768e256
commit
cc1816b0d6
|
@ -222,7 +222,7 @@ static void write_global_extended_header(const unsigned char *sha1)
|
|||
static int git_tar_config(const char *var, const char *value)
|
||||
{
|
||||
if (!strcmp(var, "tar.umask")) {
|
||||
if (!strcmp(value, "user")) {
|
||||
if (value && !strcmp(value, "user")) {
|
||||
tar_umask = umask(0);
|
||||
umask(tar_umask);
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue