| Index: webrtc/common_types.cc
|
| diff --git a/webrtc/common_types.cc b/webrtc/common_types.cc
|
| index b9c4737aeb511627bd1b3697269ef047d8a11ad1..c9f7fa1e738fbbd1b61b704bb5d4458667a49e5d 100644
|
| --- a/webrtc/common_types.cc
|
| +++ b/webrtc/common_types.cc
|
| @@ -25,7 +25,7 @@ constexpr size_t StreamId::kMaxSize;
|
|
|
| void StreamId::Set(const char* data, size_t size) {
|
| // If |data| contains \0, the stream id size might become less than |size|.
|
| - RTC_DCHECK_LE(size, kMaxSize);
|
| + RTC_CHECK_LE(size, kMaxSize);
|
| memcpy(value_, data, size);
|
| if (size < kMaxSize)
|
| value_[size] = 0;
|
|
|