diff options
Diffstat (limited to 'base/string_util.cc')
-rw-r--r-- | base/string_util.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/string_util.cc b/base/string_util.cc index fd6fccc..2eecb79 100644 --- a/base/string_util.cc +++ b/base/string_util.cc @@ -472,7 +472,7 @@ bool IsStringUTF8(const std::string& str) { int32 code_point; CBU8_NEXT(src, char_index, src_len, code_point); if (!base::IsValidCharacter(code_point)) - return false; + return false; } return true; } |