commit | fe811d8bd0da15f14702968a9c7deb02db7eec9f | [log] [tgz] |
---|---|---|
author | Android (Google) Code Review <android-gerrit@google.com> | Wed Jul 08 21:07:09 2009 -0700 |
committer | Android (Google) Code Review <android-gerrit@google.com> | Wed Jul 08 21:07:09 2009 -0700 |
tree | 14d0adb3ca2734e1d0da6dec059c604cf10aea91 | |
parent | 8a715b4b791db4390d12e0ded02280592634a424 [diff] | |
parent | 361d477957feb07454b93509da0bfd05e9c718a8 [diff] |
Merge change 6603 into donut * changes: quick fix; utf8_codepoint_count must be utf8_length
diff --git a/libs/utils/String8.cpp b/libs/utils/String8.cpp index 71bf3ce..e908ec1 100644 --- a/libs/utils/String8.cpp +++ b/libs/utils/String8.cpp
@@ -681,7 +681,7 @@ return ss-s; } -size_t utf8_codepoint_count(const char *src) +size_t utf8_length(const char *src) { const char *cur = src; size_t ret = 0;