diff options
Diffstat (limited to '')
-rw-r--r-- | src/buffer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.cpp b/src/buffer.cpp index fa27116..234dc92 100644 --- a/src/buffer.cpp +++ b/src/buffer.cpp | |||
@@ -153,6 +153,6 @@ void Bu::Buffer::flush() | |||
153 | 153 | ||
154 | bool Bu::Buffer::isEos() | 154 | bool Bu::Buffer::isEos() |
155 | { | 155 | { |
156 | return iReadPos == (iReadBufFill-1) && rNext.isEos(); | 156 | return (iReadPos >= (iReadBufFill-1)) && (rNext.isEos()); |
157 | } | 157 | } |
158 | 158 | ||