summaryrefslogtreecommitdiffstats
path: root/src/network
diff options
context:
space:
mode:
authorMarkus Goetz <Markus.Goetz@nokia.com>2009-08-18 08:33:09 +0200
committerMarkus Goetz <Markus.Goetz@nokia.com>2009-08-18 08:34:12 +0200
commitf30e54f2e8f89ca2c92032457a98b3f98010ba44 (patch)
tree30da13df4d7bebd6d5f114cf477eb74e5507367e /src/network
parent95cb2bb6cbdf2dcc0a035105104a4c08ecc43e83 (diff)
QSslSocket: Clear readBuffer and writeBuffer on close()
Fixes https://bugs.webkit.org/show_bug.cgi?id=28016 Reviewed-by: andreas
Diffstat (limited to 'src/network')
-rw-r--r--src/network/ssl/qsslsocket.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/network/ssl/qsslsocket.cpp b/src/network/ssl/qsslsocket.cpp
index e8ae33d404..1acd88b89f 100644
--- a/src/network/ssl/qsslsocket.cpp
+++ b/src/network/ssl/qsslsocket.cpp
@@ -653,7 +653,16 @@ void QSslSocket::close()
#ifdef QSSLSOCKET_DEBUG
qDebug() << "QSslSocket::close()";
#endif
+ Q_D(QSslSocket);
QTcpSocket::close();
+
+ // must be cleared, reading/writing not possible on closed socket:
+ d->readBuffer.clear();
+ d->writeBuffer.clear();
+ // for QTcpSocket this is already done because it uses the readBuffer/writeBuffer
+ // if the QIODevice it is based on
+ // ### FIXME QSslSocket should probably do similar instead of having
+ // its own readBuffer/writeBuffer
}
/*!