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

Unified Diff: third_party/WebKit/Source/platform/text/UnicodeUtilities.cpp

Issue 1845363003: String replaceWithLiteral should just use strlen, also rename to replace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Another NUL fix. Created 4 years, 9 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
Index: third_party/WebKit/Source/platform/text/UnicodeUtilities.cpp
diff --git a/third_party/WebKit/Source/platform/text/UnicodeUtilities.cpp b/third_party/WebKit/Source/platform/text/UnicodeUtilities.cpp
index 9a14846566171c74fc6e5d0736330c8f5fcd7e7a..55d47b10f9a4f7ddfcf512ae763c3e07dec5b781 100644
--- a/third_party/WebKit/Source/platform/text/UnicodeUtilities.cpp
+++ b/third_party/WebKit/Source/platform/text/UnicodeUtilities.cpp
@@ -77,7 +77,7 @@ void foldQuoteMarksAndSoftHyphens(String& s)
s.replace(rightSingleQuotationMarkCharacter, '\'');
// Replace soft hyphen with an ignorable character so that their presence or absence will
// not affect string comparison.
- s.replace(softHyphenCharacter, 0);
+ s.replace(softHyphenCharacter, static_cast<UChar>('\0'));
}
static bool isNonLatin1Separator(UChar32 character)
« no previous file with comments | « third_party/WebKit/Source/platform/text/LocaleWinTest.cpp ('k') | third_party/WebKit/Source/wtf/text/WTFString.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698