Merge remote-tracking branch 'origin/tracking' into custom

This commit is contained in:
roytam1 2022-09-29 15:19:08 +08:00
commit de51d3878e
30 changed files with 134 additions and 2622 deletions

View file

@ -5119,8 +5119,18 @@ internalEntityProcessor(XML_Parser parser,
{
processor = contentProcessor;
/* see externalEntityContentProcessor vs contentProcessor */
return doContent(parser, parentParser ? 1 : 0, encoding, s, end,
nextPtr, (XML_Bool)!ps_finalBuffer);
result = doContent(parser,
parentParser ? 1 : 0,
encoding,
s,
end,
nextPtr,
(XML_Bool)!ps_finalBuffer);
if (result == XML_ERROR_NONE) {
if (!storeRawNames(parser))
return XML_ERROR_NO_MEMORY;
}
return result;
}
}