Bug 1566243 - Fix marshalling of WebSocketFrame r=michal

Differential Revision: https://phabricator.services.mozilla.com/D38227

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Christoph Walcher 2019-07-25 21:31:10 +00:00
Родитель a4274bd868
Коммит 56f94eb4b4
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -116,8 +116,8 @@ void WebSocketFrameData::WriteIPCParams(IPC::Message* aMessage) const {
WriteParam(aMessage, mRsvBit1);
WriteParam(aMessage, mRsvBit2);
WriteParam(aMessage, mRsvBit3);
WriteParam(aMessage, mOpCode);
WriteParam(aMessage, mMaskBit);
WriteParam(aMessage, mOpCode);
WriteParam(aMessage, mMask);
WriteParam(aMessage, mPayload);
}