X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=ls-files.c;h=e42119c5ee1d0ceffca3d36462fc09cd53d2eef5;hb=84a9b58c421f9b2d1cc6c195ed441fac48e60392;hp=df25c8c012a96a8277413ca3a81490b81b7dc067;hpb=4d569a2c422a9655390e7d33cad0bab88379f13d;p=git.git diff --git a/ls-files.c b/ls-files.c index df25c8c0..e42119c5 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') {