mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-06 13:45:00 +00:00
Fix utf8_toUtf16 (bug #539)
This commit is contained in:
parent
06b9bcf2a6
commit
896b6c1fd3
1 changed files with 4 additions and 2 deletions
|
@ -402,7 +402,7 @@ utf8_toUtf16(const ENCODING *enc,
|
|||
case BT_LEAD2:
|
||||
if (fromLim - from < 2) {
|
||||
res = XML_CONVERT_INPUT_INCOMPLETE;
|
||||
break;
|
||||
goto after;
|
||||
}
|
||||
*to++ = (unsigned short)(((from[0] & 0x1f) << 6) | (from[1] & 0x3f));
|
||||
from += 2;
|
||||
|
@ -410,7 +410,7 @@ utf8_toUtf16(const ENCODING *enc,
|
|||
case BT_LEAD3:
|
||||
if (fromLim - from < 3) {
|
||||
res = XML_CONVERT_INPUT_INCOMPLETE;
|
||||
break;
|
||||
goto after;
|
||||
}
|
||||
*to++ = (unsigned short)(((from[0] & 0xf) << 12)
|
||||
| ((from[1] & 0x3f) << 6) | (from[2] & 0x3f));
|
||||
|
@ -441,6 +441,8 @@ utf8_toUtf16(const ENCODING *enc,
|
|||
break;
|
||||
}
|
||||
}
|
||||
if (from < fromLim)
|
||||
res = XML_CONVERT_OUTPUT_EXHAUSTED;
|
||||
after:
|
||||
*fromP = from;
|
||||
*toP = to;
|
||||
|
|
Loading…
Add table
Reference in a new issue