diff options
author | Lukas Wunner <lukas@wunner.de> | 2016-08-03 04:16:02 -0400 |
---|---|---|
committer | Matt Fleming <matt@codeblueprint.co.uk> | 2016-09-09 11:08:46 -0400 |
commit | cf289cefbfde519bbc179a86cdc5e8cc91a0a08d (patch) | |
tree | afcdd2877f334ee47aa14f426c64cdd8369a1e3b /lib/ucs2_string.c | |
parent | d520dd1f348dcaafcb8ce804b2a5ebb1be004719 (diff) |
lib/ucs2_string: Speed up ucs2_utf8size()
No need to calculate the string length on every loop iteration.
Signed-off-by: Lukas Wunner <lukas@wunner.de>
Cc: Peter Jones <pjones@redhat.com>
Signed-off-by: Matt Fleming <matt@codeblueprint.co.uk>
Diffstat (limited to 'lib/ucs2_string.c')
-rw-r--r-- | lib/ucs2_string.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ucs2_string.c b/lib/ucs2_string.c index f0b323abb4c6..ae8d2491133c 100644 --- a/lib/ucs2_string.c +++ b/lib/ucs2_string.c | |||
@@ -56,7 +56,7 @@ ucs2_utf8size(const ucs2_char_t *src) | |||
56 | unsigned long i; | 56 | unsigned long i; |
57 | unsigned long j = 0; | 57 | unsigned long j = 0; |
58 | 58 | ||
59 | for (i = 0; i < ucs2_strlen(src); i++) { | 59 | for (i = 0; src[i]; i++) { |
60 | u16 c = src[i]; | 60 | u16 c = src[i]; |
61 | 61 | ||
62 | if (c >= 0x800) | 62 | if (c >= 0x800) |