summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: f5ef535)
raw | patch | inline | side by side (parent: f5ef535)
author | Alexandre Julliard <julliard@winehq.org> | |
Sat, 18 Mar 2006 10:27:45 +0000 (11:27 +0100) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Sat, 18 Mar 2006 22:01:37 +0000 (14:01 -0800) |
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>
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>
ls-files.c | patch | blob | history |
diff --git a/ls-files.c b/ls-files.c
index df25c8c012a96a8277413ca3a81490b81b7dc067..e42119c5ee1d0ceffca3d36462fc09cd53d2eef5 100644 (file)
--- a/ls-files.c
+++ b/ls-files.c
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') {