summaryrefslogtreecommitdiffstats
path: root/src/xml
diff options
context:
space:
mode:
authorLiang Qi <liang.qi@qt.io>2018-01-24 17:12:18 +0000
committerThe Qt Project <gerrit-noreply@qt-project.org>2018-01-24 18:36:41 +0000
commitc7170915c722cb9deea5141a8b06cfb87c5d682d (patch)
tree30db43482060215f51982d511c75e3a662befa9e /src/xml
parentd2b2511f88d3cf0b3db65c1bb5836e08e50636ab (diff)
parentc97eb3e18ec0326a469ef37997f6368cf029c766 (diff)
Merge "Merge remote-tracking branch 'origin/5.9' into 5.10" into refs/staging/5.10
Diffstat (limited to 'src/xml')
-rw-r--r--src/xml/sax/qxml.cpp14
1 files changed, 2 insertions, 12 deletions
diff --git a/src/xml/sax/qxml.cpp b/src/xml/sax/qxml.cpp
index bc7d00483a..717a8c327d 100644
--- a/src/xml/sax/qxml.cpp
+++ b/src/xml/sax/qxml.cpp
@@ -1265,18 +1265,8 @@ void QXmlInputSource::fetchData()
} else if (device->isOpen() || device->open(QIODevice::ReadOnly)) {
rawData.resize(BufferSize);
qint64 size = device->read(rawData.data(), BufferSize);
-
- if (size != -1) {
- // We don't want to give fromRawData() less than four bytes if we can avoid it.
- while (size < 4) {
- if (!device->waitForReadyRead(-1))
- break;
- int ret = device->read(rawData.data() + size, BufferSize - size);
- if (ret <= 0)
- break;
- size += ret;
- }
- }
+ if (size == 0 && device->waitForReadyRead(-1))
+ size = device->read(rawData.data(), BufferSize);
rawData.resize(qMax(qint64(0), size));
}