summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlex Trotsenko <alex1973tr@gmail.com>2017-08-17 20:47:37 +0300
committerAlex Trotsenko <alex1973tr@gmail.com>2017-08-17 18:27:23 +0000
commit3ce555a3de71725e83cd4e6cbd4da9ca1bc7ba20 (patch)
treef6b0bbd10f44bddddde79fbb349ff03437cbf4b4 /src
parent90749ecf0903ba80996e04cc735e7695c2641e58 (diff)
QProcessPrivate::tryReadFromChannel(): remove dead code
'readBytes == 0' condition is checked in the code above. Change-Id: I9448f47939b174fdef9f0cd5413254d41a8b4273 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'src')
-rw-r--r--src/corelib/io/qprocess.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/corelib/io/qprocess.cpp b/src/corelib/io/qprocess.cpp
index bb16b0c427..4e106691f7 100644
--- a/src/corelib/io/qprocess.cpp
+++ b/src/corelib/io/qprocess.cpp
@@ -1051,10 +1051,7 @@ bool QProcessPrivate::tryReadFromChannel(Channel *channel)
readBuffer.chop(available - readBytes);
bool didRead = false;
- if (readBytes == 0) {
- if (channel->notifier)
- channel->notifier->setEnabled(false);
- } else if (currentReadChannel == channelIdx) {
+ if (currentReadChannel == channelIdx) {
didRead = true;
if (!emittedReadyRead) {
emittedReadyRead = true;