input/async: move the IsEOF() check to a separate block

This commit is contained in:
Max Kellermann 2025-01-29 12:58:36 +01:00
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);
}