input/async: move the IsEOF() check to a separate block
This commit is contained in:
parent
bd78307940
commit
70a0a781c8
@ -187,9 +187,12 @@ AsyncInputStream::Read(std::unique_lock<Mutex> &lock,
|
||||
Check();
|
||||
|
||||
r = buffer.Read();
|
||||
if (!r.empty() || IsEOF())
|
||||
if (!r.empty())
|
||||
break;
|
||||
|
||||
if (IsEOF())
|
||||
return 0;
|
||||
|
||||
caller_cond.wait(lock);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user