diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-15 03:34:50 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-15 03:34:50 +0000 |
commit | def92d1b8e9d373e2f6f27c366d578d97d8960c6 (patch) | |
tree | 2ef34b9ad8bb9a9220e05d60352558b15f513894 /third_party/libwebrtc/p2p/base/pseudo_tcp.cc | |
parent | Adding debian version 125.0.3-1. (diff) | |
download | firefox-def92d1b8e9d373e2f6f27c366d578d97d8960c6.tar.xz firefox-def92d1b8e9d373e2f6f27c366d578d97d8960c6.zip |
Merging upstream version 126.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
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."; |