summaryrefslogtreecommitdiff
path: root/lib/wcswidth-impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/wcswidth-impl.h')
-rw-r--r--lib/wcswidth-impl.h19
1 files changed, 16 insertions, 3 deletions
diff --git a/lib/wcswidth-impl.h b/lib/wcswidth-impl.h
index 644a093a7e..a879bfdd93 100644
--- a/lib/wcswidth-impl.h
+++ b/lib/wcswidth-impl.h
@@ -35,9 +35,22 @@ wcswidth (const wchar_t *s, size_t n)
}
return count;
+ /* The total width has become > INT_MAX.
+ Continue searching for a non-printing wide character. */
+ for (; n > 0; s++, n--)
+ {
+ wchar_t c = *s;
+ if (c == (wchar_t)'\0')
+ break;
+ {
+ int width = wcwidth (c);
+ if (width < 0)
+ goto found_nonprinting;
+ }
+ overflow: ;
+ }
+ return INT_MAX;
+
found_nonprinting:
return -1;
-
- overflow:
- return INT_MAX;
}