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:
Rhodri James 2017-06-06 17:54:32 +01:00 committed by Sebastian Pipping
parent 63de667ed0
commit fc06a529a3

View file

@ -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;