| Index: third_party/WebKit/Source/modules/eventsource/EventSourceParser.cpp
|
| diff --git a/third_party/WebKit/Source/modules/eventsource/EventSourceParser.cpp b/third_party/WebKit/Source/modules/eventsource/EventSourceParser.cpp
|
| index 4fbad24ac0123b8fd5281ab94020f44bcbef555d..74ec019591a648296372aad38f18dec3cf8b9be8 100644
|
| --- a/third_party/WebKit/Source/modules/eventsource/EventSourceParser.cpp
|
| +++ b/third_party/WebKit/Source/modules/eventsource/EventSourceParser.cpp
|
| @@ -98,7 +98,7 @@ void EventSourceParser::parseLine() {
|
| }
|
| if (fieldName == "data") {
|
| m_data.append(m_line.data() + fieldValueStart, fieldValueSize);
|
| - m_data.append('\n');
|
| + m_data.push_back('\n');
|
| return;
|
| }
|
| if (fieldName == "id") {
|
|
|