9
0
Fork 0

use xrealloc instead of realloc

This commit is contained in:
Sascha Hauer 2007-09-27 16:28:26 +02:00
parent 6057d62524
commit 9e13a384c0
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ static struct line *line_realloc(int len, struct line *line)
while (size < len)
size <<= 1;
line->data = realloc(line->data, size);
line->data = xrealloc(line->data, size);
return line;
}