Skip to content

Commit

Permalink
src/ReadLine.getLine(): bug-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
h-dh committed Aug 27, 2015
1 parent 6cddb67 commit dacf9ef
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/ReadLine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,9 @@ ReadLine::getItems( size_t beg, size_t end )
bool
ReadLine::getLine( std::string &str0)
{
bool bret = readLine();
bool bret;
if( (bret=readLine()) )
return bret;

if( isSkipCharacter )
{
Expand Down

0 comments on commit dacf9ef

Please sign in to comment.