| Index: third_party/WebKit/Source/platform/SharedBufferChunkReader.cpp
|
| diff --git a/third_party/WebKit/Source/platform/SharedBufferChunkReader.cpp b/third_party/WebKit/Source/platform/SharedBufferChunkReader.cpp
|
| index 30b835a82755915deba2bb5c0c33a0db2314ff65..b7e36f44e220953625b769a45b9fe8811e87f487 100644
|
| --- a/third_party/WebKit/Source/platform/SharedBufferChunkReader.cpp
|
| +++ b/third_party/WebKit/Source/platform/SharedBufferChunkReader.cpp
|
| @@ -79,8 +79,7 @@ bool SharedBufferChunkReader::nextChunk(Vector<char>& chunk,
|
| char currentCharacter = m_segment[m_segmentIndex++];
|
| if (currentCharacter != m_separator[m_separatorIndex]) {
|
| if (m_separatorIndex > 0) {
|
| - ASSERT_WITH_SECURITY_IMPLICATION(m_separatorIndex <=
|
| - m_separator.size());
|
| + SECURITY_DCHECK(m_separatorIndex <= m_separator.size());
|
| chunk.append(m_separator.data(), m_separatorIndex);
|
| m_separatorIndex = 0;
|
| }
|
|
|