Fix UTF-16 surrogate handling in wctomb and friends.
* libc/stdlib/wctomb_r.c (__utf8_wctomb): Fix check for handling a lone high surrogate. Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
parent
71a897e40d
commit
9b42474f29
|
@ -1,3 +1,8 @@
|
|||
2015-04-01 Corinna Vinschen <vinschen@redhat.com>
|
||||
|
||||
* libc/stdlib/wctomb_r.c (__utf8_wctomb): Fix check for handling a
|
||||
lone high surrogate.
|
||||
|
||||
2015-03-31 Corinna Vinschen <vinschen@redhat.com>
|
||||
|
||||
* libc/time/lcltime_r.c (localtime_r): Call _tzset_unlocked inside
|
||||
|
|
|
@ -74,7 +74,7 @@ _DEFUN (__utf8_wctomb, (r, s, wchar, charset, state),
|
|||
return 0; /* UTF-8 encoding is not state-dependent */
|
||||
|
||||
if (sizeof (wchar_t) == 2 && state->__count == -4
|
||||
&& (wchar < 0xdc00 || wchar >= 0xdfff))
|
||||
&& (wchar < 0xdc00 || wchar > 0xdfff))
|
||||
{
|
||||
/* There's a leftover lone high surrogate. Write out the CESU-8 value
|
||||
of the surrogate and proceed to convert the given character. Note
|
||||
|
|
|
@ -35,3 +35,6 @@ Bug Fixes
|
|||
|
||||
- Avoid potential crash at startup or in getgroups(2).
|
||||
Addresses: https://cygwin.com/ml/cygwin/2015-04/msg00010.html
|
||||
|
||||
- Fix UTF-16 surrogate handling in wctomb and friends.
|
||||
Addresses: https://cygwin.com/ml/cygwin/2015-03/msg00452.html
|
||||
|
|
Loading…
Reference in New Issue