git-repack-script: Add option to repack all objects.
[gitweb.git] / ls-files.c
index 56f3919e069eb7390ff1f06ff25a0cc9c420e8a8..e53d245884ab14f85824fd6c1b891481c8b1f849 100644 (file)
@@ -205,7 +205,7 @@ static int excluded(const char *pathname)
 
 struct nond_on_fs {
        int len;
-       char name[];
+       char name[0];
 };
 
 static struct nond_on_fs **dir;
@@ -496,7 +496,7 @@ static void verify_pathspec(void)
                        char c = n[i];
                        if (prev && prev[i] != c)
                                break;
-                       if (c == '*' || c == '?')
+                       if (!c || c == '*' || c == '?')
                                break;
                        if (c == '/')
                                len = i+1;