aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/base/console.cpp5
1 files changed, 4 insertions, 1 deletions
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();