Bugfix: null-terminate buffer

This commit is contained in:
Michael Stapelberg 2010-03-26 03:04:54 +01:00
parent a542515f9e
commit 41b6631f68
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ void parse_file(const char *f) {
if (fstat(fd, &stbuf) == -1) if (fstat(fd, &stbuf) == -1)
die("Could not fstat file: %s\n", strerror(errno)); die("Could not fstat file: %s\n", strerror(errno));
buf = smalloc(stbuf.st_size * sizeof(char)); buf = scalloc((stbuf.st_size + 1) * sizeof(char));
while (read_bytes < stbuf.st_size) { while (read_bytes < stbuf.st_size) {
if ((ret = read(fd, buf + read_bytes, (stbuf.st_size - read_bytes))) < 0) if ((ret = read(fd, buf + read_bytes, (stbuf.st_size - read_bytes))) < 0)
die("Could not read(): %s\n", strerror(errno)); die("Could not read(): %s\n", strerror(errno));