diff options
Diffstat (limited to 'third_party/libwebrtc/p2p/base/pseudo_tcp.cc')
-rw-r--r-- | third_party/libwebrtc/p2p/base/pseudo_tcp.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/third_party/libwebrtc/p2p/base/pseudo_tcp.cc b/third_party/libwebrtc/p2p/base/pseudo_tcp.cc index 5a5ce0392b..3aaa2ad065 100644 --- a/third_party/libwebrtc/p2p/base/pseudo_tcp.cc +++ b/third_party/libwebrtc/p2p/base/pseudo_tcp.cc @@ -1183,7 +1183,8 @@ void PseudoTcp::queueConnectMessage() { buf.WriteUInt8(m_rwnd_scale); } m_snd_wnd = static_cast<uint32_t>(buf.Length()); - queue(buf.Data(), static_cast<uint32_t>(buf.Length()), true); + queue(reinterpret_cast<const char*>(buf.Data()), + static_cast<uint32_t>(buf.Length()), true); } void PseudoTcp::parseOptions(const char* data, uint32_t len) { @@ -1212,7 +1213,7 @@ void PseudoTcp::parseOptions(const char* data, uint32_t len) { // Content of this option. if (opt_len <= buf.Length()) { - applyOption(kind, buf.Data(), opt_len); + applyOption(kind, reinterpret_cast<const char*>(buf.Data()), opt_len); buf.Consume(opt_len); } else { RTC_LOG(LS_ERROR) << "Invalid option length received."; |