Commit 1c155a0d authored by hawken's avatar hawken

Fix for TextInputStream consuming file without producing lines

parent 8f196db7
......@@ -68,6 +68,8 @@ TextInputStream::ReadLine()
return nullptr;
}
buffer.Append(nbytes);
line = ReadBufferedLine(buffer);
if (line != nullptr)
return line;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment