diff options
author | Max Kellermann <max@duempel.org> | 2012-03-19 19:51:19 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2012-03-19 20:37:25 +0100 |
commit | d5be3cce9cb3f198c7b36ac09400e963555066c8 (patch) | |
tree | 3e3e4fe875e9df349674de21b7d5fe909e86d85c | |
parent | 8dcefaf2e3366510a78117ad651f1f1116f6ab83 (diff) | |
download | mpd-d5be3cce9cb3f198c7b36ac09400e963555066c8.tar.gz mpd-d5be3cce9cb3f198c7b36ac09400e963555066c8.tar.xz mpd-d5be3cce9cb3f198c7b36ac09400e963555066c8.zip |
text_input_stream: detect end-of-file
Fixes endless loop when the last line of a text file was not
terminated (bug 3470).
-rw-r--r-- | src/text_input_stream.c | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/src/text_input_stream.c b/src/text_input_stream.c index 5da217eae..4a858fc85 100644 --- a/src/text_input_stream.c +++ b/src/text_input_stream.c @@ -24,6 +24,7 @@ #include <glib.h> +#include <assert.h> #include <string.h> struct text_input_stream { @@ -67,7 +68,12 @@ text_input_stream_read(struct text_input_stream *tis) do { dest = fifo_buffer_write(tis->buffer, &length); - if (dest != NULL) { + if (dest != NULL && length >= 2) { + /* reserve one byte for the null terminator if + the last line is not terminated by a + newline character */ + --length; + nbytes = input_stream_lock_read(tis->is, dest, length, &error); if (nbytes > 0) @@ -77,13 +83,22 @@ text_input_stream_read(struct text_input_stream *tis) g_error_free(error); return NULL; } - } + } else + nbytes = 0; src = fifo_buffer_read(tis->buffer, &length); if (src == NULL) return NULL; p = memchr(src, '\n', length); + if (p == NULL && nbytes == 0) { + /* end of file (or line too long): terminate + the current line */ + dest = fifo_buffer_write(tis->buffer, &nbytes); + assert(dest != NULL); + *(char *)dest = '\n'; + fifo_buffer_append(tis->buffer, 1); + } } while (p == NULL); length = p - src + 1; |