aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/locale
diff options
context:
space:
mode:
authorTom Rhodes <trhodes@FreeBSD.org>2006-03-30 09:04:12 +0000
committerTom Rhodes <trhodes@FreeBSD.org>2006-03-30 09:04:12 +0000
commit639dab228643d6807cfdea9f9db0e4535a027c30 (patch)
treeb7f7d0159026bf52a5148164d15f84b0f4d8b06d /lib/libc/locale
parenta260bd4131794d204e277a8977b37da226df9d62 (diff)
downloadsrc-639dab228643d6807cfdea9f9db0e4535a027c30.tar.gz
src-639dab228643d6807cfdea9f9db0e4535a027c30.zip
Fix a bug where, for 6-byte sequences, the top 6 bits get compared to
111111 rather than the top 7 bits being compared against 1111110 causing illegal bytes fe and ff being treated the same as legal bytes fc and fd.
Notes
Notes: svn path=/head/; revision=157289
Diffstat (limited to 'lib/libc/locale')
-rw-r--r--lib/libc/locale/utf8.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/locale/utf8.c b/lib/libc/locale/utf8.c
index 2f537a5b6ec9..e467fc053390 100644
--- a/lib/libc/locale/utf8.c
+++ b/lib/libc/locale/utf8.c
@@ -140,7 +140,7 @@ _UTF8_mbrtowc(wchar_t * __restrict pwc, const char * __restrict s, size_t n,
mask = 0x03;
want = 5;
lbound = 0x200000;
- } else if ((ch & 0xfc) == 0xfc) {
+ } else if ((ch & 0xfe) == 0xfc) {
mask = 0x01;
want = 6;
lbound = 0x4000000;