| Index: Source/platform/SharedBufferChunkReader.cpp
|
| diff --git a/Source/platform/SharedBufferChunkReader.cpp b/Source/platform/SharedBufferChunkReader.cpp
|
| index e7b6362047203b008e887819f01cde0be0e80a24..858478bc3d3cd2c7f4adf45d9cdbbdca58430f88 100644
|
| --- a/Source/platform/SharedBufferChunkReader.cpp
|
| +++ b/Source/platform/SharedBufferChunkReader.cpp
|
| @@ -91,7 +91,7 @@ bool SharedBufferChunkReader::nextChunk(Vector<char>& chunk, bool includeSeparat
|
| m_separatorIndex++;
|
| if (m_separatorIndex == m_separator.size()) {
|
| if (includeSeparator)
|
| - chunk.append(m_separator);
|
| + chunk.appendVector(m_separator);
|
| m_separatorIndex = 0;
|
| return true;
|
| }
|
|
|