Gui: TTY log fix

This commit is contained in:
Nekotekina 2017-03-14 16:29:58 +03:00
parent 63a107acbc
commit b3073bbf1e

View file

@ -255,7 +255,7 @@ void LogFrame::UpdateUI()
const auto start = steady_clock::now(); const auto start = steady_clock::now();
// Check TTY logs // Check TTY logs
while (const u64 size = std::min<u64>(sizeof(buf), m_tty_file.size() - m_tty_file.pos())) while (const u64 size = std::min<u64>(buf.size(), m_tty_file.size() - m_tty_file.pos()))
{ {
const wxString& text = get_utf8(m_tty_file, size); const wxString& text = get_utf8(m_tty_file, size);