summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLuca Niccoli <lultimouomo@gmail.com>2015-04-09 11:37:02 +0200
committerLiang Qi <liang.qi@theqtcompany.com>2015-04-09 10:12:43 +0000
commit0fcfc33963a48dee74eb971decbf89f35c3240f0 (patch)
treec68419cec94d69d1231264d9d7f61265960173e2 /src
parent48418a2e16b6dede3bc002dda5a3cb277fd3e802 (diff)
downloadqtwebsockets-0fcfc33963a48dee74eb971decbf89f35c3240f0.tar.gz
Fix copy constructor
Change-Id: I2c27bda6523ff84d9ea9178f1e6728bf4defc511 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com> Reviewed-by: Liang Qi <liang.qi@theqtcompany.com>
Diffstat (limited to 'src')
-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 a4e644b..d533921 100644
--- a/src/websockets/qwebsocketframe.cpp
+++ b/src/websockets/qwebsocketframe.cpp
@@ -102,7 +102,7 @@ QWebSocketFrame &QWebSocketFrame::operator =(const QWebSocketFrame &other)
m_mask = other.m_mask;
m_rsv1 = other.m_rsv1;
m_rsv2 = other.m_rsv2;
- m_rsv3 = other.m_rsv2;
+ m_rsv3 = other.m_rsv3;
m_opCode = other.m_opCode;
m_length = other.m_length;
m_payload = other.m_payload;