X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/94b67b79cf83ec356b05b31a51c3849ee8953e6a..acf619a3c304992a7ec093cd95fdd6c0805cca66:/lib/base/console.cpp diff --git a/lib/base/console.cpp b/lib/base/console.cpp index 75c6162f..3f73fba1 100644 --- a/lib/base/console.cpp +++ b/lib/base/console.cpp @@ -281,6 +281,7 @@ void eConsoleAppContainer::closePipes() void eConsoleAppContainer::readyRead(int what) { + bool hungup = what & eSocketNotifier::Hungup; if (what & (eSocketNotifier::Priority|eSocketNotifier::Read)) { // eDebug("what = %d"); @@ -292,9 +293,11 @@ void eConsoleAppContainer::readyRead(int what) eDebug("%d = %c (%02x)", i, buf[i], buf[i] );*/ buf[rd]=0; /*emit*/ dataAvail(buf); + if (!hungup) + break; } } - if (what & eSocketNotifier::Hungup) + if (hungup) { eDebug("child has terminated"); closePipes();