summaryrefslogtreecommitdiff
path: root/ls-files.c
diff options
context:
space:
mode:
authorAlexandre Julliard <julliard@winehq.org>2006-03-18 10:27:45 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-03-18 22:01:37 (GMT)
commit451d7b47f1ba380b4f8e32b28052fff06eeb8638 (patch)
treedc931f014c18245a448a49e9daabfd75f0251173 /ls-files.c
parentf5ef535ff571d80d230ea4706edad215f1fbc96f (diff)
downloadgit-451d7b47f1ba380b4f8e32b28052fff06eeb8638.zip
git-451d7b47f1ba380b4f8e32b28052fff06eeb8638.tar.gz
git-451d7b47f1ba380b4f8e32b28052fff06eeb8638.tar.bz2
ls-files: Don't require exclude files to end with a newline.
Without this patch, the last line of an exclude file is silently ignored if it doesn't end with a newline. Signed-off-by: Alexandre Julliard <julliard@winehq.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'ls-files.c')
-rw-r--r--ls-files.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ls-files.c b/ls-files.c
index df25c8c..e42119c 100644
--- a/ls-files.c
+++ b/ls-files.c
@@ -92,11 +92,12 @@ static int add_excludes_from_file_1(const char *fname,
close(fd);
return 0;
}
- buf = xmalloc(size);
+ buf = xmalloc(size+1);
if (read(fd, buf, size) != size)
goto err;
close(fd);
+ buf[size++] = '\n';
entry = buf;
for (i = 0; i < size; i++) {
if (buf[i] == '\n') {