From b87e066f0258c22b1cde3d10ebd3b77b689fe99d Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Sat, 18 Jul 2015 10:48:15 +0100 Subject: [PATCH] console_handler: check for eof before trying to use input We'll get there without input if we exited --- contrib/epee/include/console_handler.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/contrib/epee/include/console_handler.h b/contrib/epee/include/console_handler.h index 952fc3c9..8fe73ef4 100644 --- a/contrib/epee/include/console_handler.h +++ b/contrib/epee/include/console_handler.h @@ -274,14 +274,15 @@ namespace epee } std::string command; - if(!m_stdin_reader.get_line(command)) - { - LOG_PRINT("Failed to read line.", LOG_LEVEL_0); - } + bool get_line_ret = m_stdin_reader.get_line(command); if (m_stdin_reader.eos()) { break; } + if (!get_line_ret) + { + LOG_PRINT("Failed to read line.", LOG_LEVEL_0); + } string_tools::trim(command); LOG_PRINT_L2("Read command: " << command);