diff options
author | Markus Goetz <Markus.Goetz@nokia.com> | 2009-09-23 10:40:05 (GMT) |
---|---|---|
committer | Markus Goetz <Markus.Goetz@nokia.com> | 2009-09-23 11:39:00 (GMT) |
commit | af71faf8cb2c9cbf34c408b81ce7ae1ef6c6403e (patch) | |
tree | d3332709352660b5256d8656c48b360d31eaf67d /src/network/access/qhttpnetworkreply_p.h | |
parent | d74b951c7380f8a210c701152ddafe6481c1a43b (diff) | |
download | Qt-af71faf8cb2c9cbf34c408b81ce7ae1ef6c6403e.zip Qt-af71faf8cb2c9cbf34c408b81ce7ae1ef6c6403e.tar.gz Qt-af71faf8cb2c9cbf34c408b81ce7ae1ef6c6403e.tar.bz2 |
QNAM HTTP Code: Properly remove aborted requests from processing
This fixes a crash that occured because aborted requests were
not properly removed from the channel.alreadyPipelinedRequests.
Task-number: QTBUG-4507
Reviewed-by: Peter Hartmann
Diffstat (limited to 'src/network/access/qhttpnetworkreply_p.h')
-rw-r--r-- | src/network/access/qhttpnetworkreply_p.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/network/access/qhttpnetworkreply_p.h b/src/network/access/qhttpnetworkreply_p.h index ded1d44..1073560 100644 --- a/src/network/access/qhttpnetworkreply_p.h +++ b/src/network/access/qhttpnetworkreply_p.h @@ -213,6 +213,7 @@ public: QByteArray fragment; // used for header, status, chunk header etc, not for reply data bool chunkedTransferEncoding; bool connectionCloseEnabled; + bool forceConnectionCloseEnabled; qint64 currentChunkSize; qint64 currentChunkRead; QPointer<QHttpNetworkConnection> connection; |