Commit cf289cef authored by Lukas Wunner's avatar Lukas Wunner Committed by Matt Fleming

lib/ucs2_string: Speed up ucs2_utf8size()

No need to calculate the string length on every loop iteration.
Signed-off-by: default avatarLukas Wunner <lukas@wunner.de>
Cc: Peter Jones <pjones@redhat.com>
Signed-off-by: default avatarMatt Fleming <matt@codeblueprint.co.uk>
parent d520dd1f
...@@ -56,7 +56,7 @@ ucs2_utf8size(const ucs2_char_t *src) ...@@ -56,7 +56,7 @@ ucs2_utf8size(const ucs2_char_t *src)
unsigned long i; unsigned long i;
unsigned long j = 0; unsigned long j = 0;
for (i = 0; i < ucs2_strlen(src); i++) { for (i = 0; src[i]; i++) {
u16 c = src[i]; u16 c = src[i];
if (c >= 0x800) if (c >= 0x800)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment