lib/ucs2_string: Speed up ucs2_utf8size()
authorLukas Wunner <lukas@wunner.de>
Wed, 3 Aug 2016 08:16:02 +0000 (10:16 +0200)
committerMatt Fleming <matt@codeblueprint.co.uk>
Fri, 9 Sep 2016 15:08:46 +0000 (16:08 +0100)
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>
lib/ucs2_string.c

index f0b323a..ae8d249 100644 (file)
@@ -56,7 +56,7 @@ ucs2_utf8size(const ucs2_char_t *src)
        unsigned long i;
        unsigned long j = 0;
 
-       for (i = 0; i < ucs2_strlen(src); i++) {
+       for (i = 0; src[i]; i++) {
                u16 c = src[i];
 
                if (c >= 0x800)