summaryrefslogtreecommitdiff
path: root/libbb/get_line_from_file.c
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2003-09-16 05:25:43 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2003-09-16 05:25:43 +0000
commit2570b43e829ccfc0f199fe61aafc24b1bd3fc7b1 (patch)
treede00e748021d3078ea21bb90017ded81129cb4bd /libbb/get_line_from_file.c
parent204ff1cea49c958846cd49175fa9318b81b5756f (diff)
downloadbusybox-w32-2570b43e829ccfc0f199fe61aafc24b1bd3fc7b1.tar.gz
busybox-w32-2570b43e829ccfc0f199fe61aafc24b1bd3fc7b1.tar.bz2
busybox-w32-2570b43e829ccfc0f199fe61aafc24b1bd3fc7b1.zip
Configuration option to define wether to follows GNU sed's behaviour
or the posix standard. Put the cleanup code back the way it was.
Diffstat (limited to 'libbb/get_line_from_file.c')
-rw-r--r--libbb/get_line_from_file.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libbb/get_line_from_file.c b/libbb/get_line_from_file.c
index 3b6e1e778..9a831f184 100644
--- a/libbb/get_line_from_file.c
+++ b/libbb/get_line_from_file.c
@@ -40,7 +40,7 @@ static char *private_get_line_from_file(FILE *file, int c)
40 40
41 while ((ch = getc(file)) != EOF) { 41 while ((ch = getc(file)) != EOF) {
42 /* grow the line buffer as necessary */ 42 /* grow the line buffer as necessary */
43 if (idx > linebufsz-2) { 43 if (idx > linebufsz - 2) {
44 linebuf = xrealloc(linebuf, linebufsz += GROWBY); 44 linebuf = xrealloc(linebuf, linebufsz += GROWBY);
45 } 45 }
46 linebuf[idx++] = (char)ch; 46 linebuf[idx++] = (char)ch;
@@ -51,7 +51,6 @@ static char *private_get_line_from_file(FILE *file, int c)
51 break; 51 break;
52 } 52 }
53 } 53 }
54
55 if (linebuf) { 54 if (linebuf) {
56 if (ferror(file)) { 55 if (ferror(file)) {
57 free(linebuf); 56 free(linebuf);