summaryrefslogtreecommitdiff
path: root/ls-files.c
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <junkio@cox.net>2005-08-24 18:54:24 -0700
committerLibravatar Junio C Hamano <junkio@cox.net>2005-08-24 18:54:24 -0700
commit3857284f7b892f855edffc5b9c196a0dd74b1b7d (patch)
tree76754f705371a6a6c4d0e55fa806feb53bd0e64f /ls-files.c
parentMerge refs/heads/master from . (diff)
parent[PATCH] Fix silly pathspec bug in git-ls-files (diff)
downloadtgif-3857284f7b892f855edffc5b9c196a0dd74b1b7d.tar.xz
Merge refs/heads/master from .
Diffstat (limited to 'ls-files.c')
-rw-r--r--ls-files.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ls-files.c b/ls-files.c
index 2c7aada88c..e53d245884 100644
--- a/ls-files.c
+++ b/ls-files.c
@@ -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;