uniq: always store previous line length

A bug was introduced in the NUL support refactor leading to
the length of the previous line only being saved if the
previous line was shorter than the current line. If triggered
this lead to copying too much data into the previous line buffer.

Behavior before:

	printf '1234\na\n' | ./uniq
	1234
	a
	4

Behavior after:

	printf '1234\na\n' | ./uniq
	1234
	a
This commit is contained in:
Eivind Uggedal 2016-03-11 15:06:18 +00:00 committed by sin
parent 515525997c
commit d4f7ecd334
1 changed files with 2 additions and 2 deletions

4
uniq.c
View File

@ -62,9 +62,9 @@ uniqline(FILE *ofp, struct line *l)
if (l) {
if (!prevl.data || l->len >= prevl.len) {
prevl.len = l->len;
prevl.data = erealloc(prevl.data, prevl.len);
prevl.data = erealloc(prevl.data, l->len);
}
prevl.len = l->len;
memcpy(prevl.data, l->data, prevl.len);
prevoff = loff;
}