mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 17:16:51 +00:00
Don't abort externremux when internal read buffer is empty
This commit is contained in:
@@ -303,7 +303,7 @@ void cTSExt::Action(void)
|
||||
dsyslog("streamdev-server: buffer full while reading from externremux");
|
||||
|
||||
if (result == -1) {
|
||||
if (errno != EINTR) {
|
||||
if (errno != EINTR && errno != EAGAIN) {
|
||||
LOG_ERROR_STR("read failed");
|
||||
m_Active = false;
|
||||
}
|
||||
|
Reference in New Issue
Block a user