mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-06 05:34:59 +00:00
Reject multi-byte encodings with no converter function.
Not supplying a character encoding convert function when one was needed previously caused a segfault if a multi-byte character was encountered. This errors at the start of parse instead.
This commit is contained in:
parent
63de667ed0
commit
fc06a529a3
1 changed files with 3 additions and 0 deletions
|
@ -1469,6 +1469,9 @@ XmlInitUnknownEncoding(void *mem,
|
|||
else if (c < 0) {
|
||||
if (c < -4)
|
||||
return 0;
|
||||
/* Multi-byte sequences need a converter function */
|
||||
if (!convert)
|
||||
return 0;
|
||||
e->normal.type[i] = (unsigned char)(BT_LEAD2 - (c + 2));
|
||||
e->utf8[i][0] = 0;
|
||||
e->utf16[i] = 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue