aboutsummaryrefslogtreecommitdiffstats
path: root/string.c
diff options
context:
space:
mode:
Diffstat (limited to 'string.c')
-rw-r--r--string.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/string.c b/string.c
index 79288ceeb2..89a8b465f2 100644
--- a/string.c
+++ b/string.c
@@ -763,7 +763,7 @@ count_utf8_lead_bytes_with_ulong(const unsigned long *s)
unsigned long d = *s;
d |= ~(d>>1);
d >>= 6;
- d &= NONASCII_MASK >> 3;
+ d &= NONASCII_MASK >> 7;
d += (d>>8);
d += (d>>16);
#if NONASCII_MASK == 0x8080808080808080UL
@@ -1177,11 +1177,10 @@ str_utf8_nth(const char *p, const char *e, int nth)
if (is_utf8_lead_byte(*p)) nth--;
p++;
}
- while (s < t) {
+ do {
nth -= count_utf8_lead_bytes_with_ulong(s);
- if (nth < sizeof(long)) break;
s++;
- }
+ } while (s < t && sizeof(long) <= nth);
p = (char *)s;
}
if (0 < nth) {