Commit 71dd8c1c authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

don't allow entering invalid Unicode in make_mbchar() either

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2974 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
parent 8c55d21b
Showing with 8 additions and 1 deletion
+8 -1
......@@ -146,6 +146,10 @@ CVS code -
- Treat the Unicode characters D800-DFFF and FFFE-FFFF as
invalid, since the C library's multibyte functions don't seem
to. (DLR)
make_mbchar()
- Treat the Unicode characters D800-DFFF and FFFE-FFFF as
invalid, since the C library's multibyte functions don't seem
to. (DLR)
parse_mbchar()
- Remove now-unneeded bad_chr parameter. (DLR)
mbstrchr()
......
......@@ -333,7 +333,10 @@ char *make_mbchar(int chr, int *chr_mb_len)
chr_mb = charalloc(MB_CUR_MAX);
*chr_mb_len = wctomb(chr_mb, chr);
if (*chr_mb_len < 0) {
/* Unicode D800-DFFF and FFFE-FFFF are invalid, even though
* they're parsed properly. */
if (*chr_mb_len < 0 || ((0xD800 <= chr && chr <= 0xDFFF) ||
(0XFFFE <= chr && chr <= 0xFFFF))) {
wctomb(NULL, 0);
*chr_mb_len = 0;
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment