summaryrefslogtreecommitdiff
path: root/src/websockets/qwebsocketframe.cpp
diff options
context:
space:
mode:
authorFrederik Gladhorn <frederik.gladhorn@digia.com>2014-01-17 18:20:40 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-01-18 00:20:27 +0100
commitaa66bb128b4d853c6de200bf374758025dcd94b2 (patch)
tree97489863843aacc053c88c117b9203a6c30f5058 /src/websockets/qwebsocketframe.cpp
parent6c12e81e58b5e38c4d075cc6d7adaaaf01d80879 (diff)
downloadqtwebsockets-aa66bb128b4d853c6de200bf374758025dcd94b2.tar.gz
Add a few more const refs
In case of processPing we need to make a copy that potentially detaches when masking is requested, but pings are < 125 bytes. Before this code would copy the byte array in the same way much earlier. Change-Id: If0592bb4b508eeb11fdbf05c4bb98b9679ed0549 Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com>
Diffstat (limited to 'src/websockets/qwebsocketframe.cpp')
-rw-r--r--src/websockets/qwebsocketframe.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/websockets/qwebsocketframe.cpp b/src/websockets/qwebsocketframe.cpp
index 9765027..7c50e81 100644
--- a/src/websockets/qwebsocketframe.cpp
+++ b/src/websockets/qwebsocketframe.cpp
@@ -523,7 +523,7 @@ QWebSocketFrame QWebSocketFrame::readFrame(QIODevice *pIoDevice)
/*!
\internal
*/
-void QWebSocketFrame::setError(QWebSocketProtocol::CloseCode code, QString closeReason)
+void QWebSocketFrame::setError(QWebSocketProtocol::CloseCode code, const QString &closeReason)
{
clear();
m_closeCode = code;