diff options
Diffstat (limited to 'lldb/source/Host/common/Editline.cpp')
-rw-r--r-- | lldb/source/Host/common/Editline.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lldb/source/Host/common/Editline.cpp b/lldb/source/Host/common/Editline.cpp index 3842dc1a956..4640154c6cb 100644 --- a/lldb/source/Host/common/Editline.cpp +++ b/lldb/source/Host/common/Editline.cpp @@ -580,7 +580,6 @@ Editline::GetCharacter (EditLineCharType * c) // Read an actual character while (true) { - const bool read_full_buffer = false; // Doesn't really matter, we're reading one byte only. lldb::ConnectionStatus status = lldb::eConnectionStatusSuccess; char ch = 0; @@ -589,12 +588,12 @@ Editline::GetCharacter (EditLineCharType * c) // for someone to interrupt us. After Read returns, immediately lock the mutex again and // check if we were interrupted. m_output_mutex.Unlock(); - int read_count = m_input_connection.Read(&ch, 1, UINT32_MAX, read_full_buffer, status, NULL); + int read_count = m_input_connection.Read(&ch, 1, UINT32_MAX, status, NULL); m_output_mutex.Lock(); if (m_editor_status == EditorStatus::Interrupted) { while (read_count > 0 && status == lldb::eConnectionStatusSuccess) - read_count = m_input_connection.Read(&ch, 1, UINT32_MAX, read_full_buffer, status, NULL); + read_count = m_input_connection.Read(&ch, 1, UINT32_MAX, status, NULL); lldbassert(status == lldb::eConnectionStatusInterrupted); return 0; } |