Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(31)

Unified Diff: Source/core/xml/XSLTUnicodeSort.cpp

Issue 1161323007: Use nullptr instead of 0 in xml and xmlhttprequest. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Updated as per review comment & modified in other files which assigned "0" to ptr. Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/xml/XSLTProcessorLibxslt.cpp ('k') | Source/core/xmlhttprequest/XMLHttpRequest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/xml/XSLTUnicodeSort.cpp
diff --git a/Source/core/xml/XSLTUnicodeSort.cpp b/Source/core/xml/XSLTUnicodeSort.cpp
index 9c343eb6a1785418a83ae7b1ec51b67b1848fd1c..48044c14e0eefed68ddd82cb8336fc01e1733388 100644
--- a/Source/core/xml/XSLTUnicodeSort.cpp
+++ b/Source/core/xml/XSLTUnicodeSort.cpp
@@ -51,8 +51,8 @@ void xsltUnicodeSortFunction(xsltTransformContextPtr ctxt, xmlNodePtr *sorts, in
xsltStylePreCompPtr comp;
#endif
xmlXPathObjectPtr* resultsTab[XSLT_MAX_SORT];
- xmlXPathObjectPtr* results = 0;
- xmlNodeSetPtr list = 0;
+ xmlXPathObjectPtr* results = nullptr;
+ xmlNodeSetPtr list = nullptr;
int depth;
xmlNodePtr node;
int tempstype[XSLT_MAX_SORT], temporder[XSLT_MAX_SORT];
« no previous file with comments | « Source/core/xml/XSLTProcessorLibxslt.cpp ('k') | Source/core/xmlhttprequest/XMLHttpRequest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698