mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-06 13:45:00 +00:00
Check for surrogates in NCRs
This commit is contained in:
parent
cecd64f6ab
commit
db6a73f853
1 changed files with 12 additions and 4 deletions
|
@ -671,11 +671,19 @@ int XmlParseXmlDecl(int isGeneralTextEntity,
|
|||
static
|
||||
int checkCharRefNumber(int result)
|
||||
{
|
||||
/* FIXME maybe exclude surrogates as well */
|
||||
if ((result < 0x80 && latin1_encoding.type[result] == BT_NONXML)
|
||||
|| result == 0xFFFE
|
||||
|| result == 0xFFFF)
|
||||
switch (result >> 8) {
|
||||
case 0xD8: case 0xD9: case 0xDA: case 0xDB:
|
||||
case 0xDC: case 0xDD: case 0xDE: case 0xDF:
|
||||
return -1;
|
||||
case 0:
|
||||
if (latin1_encoding.type[result] == BT_NONXML)
|
||||
return -1;
|
||||
break;
|
||||
case 0xFF:
|
||||
if (result == 0xFFFE || result == 0xFFFF)
|
||||
return -1;
|
||||
break;
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue