libutil/getlines: fix crash with no lines

because b->lines and b->nlines would be 0 with no lines read.

reproduce: printf '' | sort or cols

bug was introduced by commit: 66a5ea722d
This commit is contained in:
Hiltjo Posthuma 2015-03-29 21:48:49 +02:00
parent 1e0c3a0ba6
commit 9f97430143

View File

@ -9,20 +9,21 @@
void
getlines(FILE *fp, struct linebuf *b)
{
char *line = NULL, **nline;
char *line = NULL;
size_t size = 0, linelen;
ssize_t len;
while ((len = getline(&line, &size, fp)) > 0) {
if (++b->nlines > b->capacity) {
b->capacity += 512;
nline = erealloc(b->lines, b->capacity * sizeof(*b->lines));
b->lines = nline;
b->lines = erealloc(b->lines, b->capacity * sizeof(*b->lines));
}
linelen = len + 1;
b->lines[b->nlines - 1] = memcpy(emalloc(linelen), line, linelen);
}
free(line);
if(!b->nlines || !b->lines)
return;
if (!strchr(b->lines[b->nlines - 1], '\n')) {
b->lines[b->nlines - 1] = erealloc(b->lines[b->nlines - 1], linelen + 1);
b->lines[b->nlines - 1][linelen - 1] = '\n';