| Index: third_party/WebKit/Source/core/xml/parser/XMLDocumentParser.cpp
|
| diff --git a/third_party/WebKit/Source/core/xml/parser/XMLDocumentParser.cpp b/third_party/WebKit/Source/core/xml/parser/XMLDocumentParser.cpp
|
| index afd1ca23e790f098fc5e564c162ae5e208e70ade..09d2d3f228366560d694a6155f3f048e3dc02cc7 100644
|
| --- a/third_party/WebKit/Source/core/xml/parser/XMLDocumentParser.cpp
|
| +++ b/third_party/WebKit/Source/core/xml/parser/XMLDocumentParser.cpp
|
| @@ -870,7 +870,7 @@ void XMLDocumentParser::doWrite(const String& parseString)
|
| // string.
|
| if (parseString.length()) {
|
| XMLDocumentParserScope scope(document());
|
| - TemporaryChange<bool> encodingScope(m_isCurrentlyParsing8BitChunk, parseString.is8Bit());
|
| + TemporaryChange<bool> encodingScope(&m_isCurrentlyParsing8BitChunk, parseString.is8Bit());
|
| parseChunk(context->context(), parseString);
|
|
|
| // JavaScript (which may be run under the parseChunk callstack) may
|
|
|