We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 844bd31 commit 8180a2bCopy full SHA for 8180a2b
cpp-terminal/private/file.cpp
@@ -149,7 +149,7 @@ std::string Term::Private::InputFileHandler::read() const
149
}
150
catch(const ErrnoException& exception)
151
{
152
- if(exception.code() != 25 && exception.code() != 0) throw;
+ if(exception.code() != 25 && exception.code() != 0 && exception.code() != 19) throw;
153
154
std::string ret(nread, '\0');
155
if(nread != 0)
0 commit comments