summaryrefslogtreecommitdiff
path: root/lib/x1000-installer/src/xf_stream.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/x1000-installer/src/xf_stream.c')
-rw-r--r--lib/x1000-installer/src/xf_stream.c19
1 files changed, 8 insertions, 11 deletions
diff --git a/lib/x1000-installer/src/xf_stream.c b/lib/x1000-installer/src/xf_stream.c
index 5a0f86123c..b6391b2c8d 100644
--- a/lib/x1000-installer/src/xf_stream.c
+++ b/lib/x1000-installer/src/xf_stream.c
@@ -159,6 +159,9 @@ int xf_stream_read_lines(struct xf_stream* s, char* buf, size_t bufsz,
159 size_t pos = 0; 159 size_t pos = 0;
160 bool at_eof = false; 160 bool at_eof = false;
161 161
162 if(bufsz <= 1)
163 return XF_E_LINE_TOO_LONG;
164
162 while(!at_eof) { 165 while(!at_eof) {
163 bytes_read = xf_stream_read(s, &buf[pos], bufsz - pos - 1); 166 bytes_read = xf_stream_read(s, &buf[pos], bufsz - pos - 1);
164 if(bytes_read < 0) 167 if(bytes_read < 0)
@@ -183,20 +186,14 @@ int xf_stream_read_lines(struct xf_stream* s, char* buf, size_t bufsz,
183 else 186 else
184 break; /* read ahead to look for newline */ 187 break; /* read ahead to look for newline */
185 } else { 188 } else {
186 endp = &buf[pos]; /* treat EOF as a newline */ 189 if(startp == &buf[pos])
190 break; /* nothing left to do */
191 else
192 endp = &buf[pos]; /* last line missing a newline -
193 * treat EOF as newline */
187 } 194 }
188 } 195 }
189 196
190 /* skip whitespace */
191 while(*startp && isspace(*startp))
192 ++startp;
193
194 /* ignore blank lines and comment lines */
195 if(*startp == '#' || *startp == '\0') {
196 startp = endp + 1;
197 continue;
198 }
199
200 rc = callback(n++, startp, arg); 197 rc = callback(n++, startp, arg);
201 if(rc != 0) 198 if(rc != 0)
202 return rc; 199 return rc;