]> git.ipfire.org Git - thirdparty/git.git/commitdiff
archive-tar.c: guard config parser from value=NULL
authorJunio C Hamano <gitster@pobox.com>
Sat, 9 Feb 2008 04:38:22 +0000 (20:38 -0800)
committerJunio C Hamano <gitster@pobox.com>
Mon, 11 Feb 2008 21:11:36 +0000 (13:11 -0800)
Signed-off-by: Junio C Hamano <gitster@pobox.com>
archive-tar.c

index e1bced56093dc08bbc260736637af3356b8598bb..30aa2e23fdbb1630dffb27db4509bc529bbd884a 100644 (file)
@@ -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 {