зеркало из https://github.com/mozilla/pjs.git
a=vidur. Fix for bug 34168. We now handle the case of a redundant percentage sign in the entity value of an entity definition in the internal subset without crashing.
This commit is contained in:
Родитель
4d4b060f83
Коммит
61284b97c7
|
@ -3043,6 +3043,10 @@ enum XML_Error storeEntityValue(XML_Parser parser,
|
|||
if (enc == encoding)
|
||||
eventPtr = next;
|
||||
return XML_ERROR_INVALID_TOKEN;
|
||||
case XML_TOK_PERCENT:
|
||||
if (enc == encoding)
|
||||
eventPtr = next;
|
||||
return XML_ERROR_SYNTAX;
|
||||
default:
|
||||
abort();
|
||||
}
|
||||
|
|
|
@ -3043,6 +3043,10 @@ enum XML_Error storeEntityValue(XML_Parser parser,
|
|||
if (enc == encoding)
|
||||
eventPtr = next;
|
||||
return XML_ERROR_INVALID_TOKEN;
|
||||
case XML_TOK_PERCENT:
|
||||
if (enc == encoding)
|
||||
eventPtr = next;
|
||||
return XML_ERROR_SYNTAX;
|
||||
default:
|
||||
abort();
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче