| Index: Source/core/xml/XSLStyleSheetLibxslt.cpp
|
| diff --git a/Source/core/xml/XSLStyleSheetLibxslt.cpp b/Source/core/xml/XSLStyleSheetLibxslt.cpp
|
| index 75c6483404ee9c2547d3eaea5efc739cc277522f..d3fd0b2ab6acefb997c9bee4aee563277cbaf778 100644
|
| --- a/Source/core/xml/XSLStyleSheetLibxslt.cpp
|
| +++ b/Source/core/xml/XSLStyleSheetLibxslt.cpp
|
| @@ -139,7 +139,7 @@ bool XSLStyleSheet::parseString(const String& source)
|
| xmlFreeDoc(m_stylesheetDoc);
|
| m_stylesheetDocTaken = false;
|
|
|
| - FrameConsole* console = 0;
|
| + FrameConsole* console = nullptr;
|
| if (LocalFrame* frame = ownerDocument()->frame())
|
| console = &frame->console();
|
|
|
| @@ -269,7 +269,7 @@ Document* XSLStyleSheet::ownerDocument()
|
| if (node)
|
| return &node->document();
|
| }
|
| - return 0;
|
| + return nullptr;
|
| }
|
|
|
| xmlDocPtr XSLStyleSheet::locateStylesheetSubResource(xmlDocPtr parentDoc, const xmlChar* uri)
|
|
|