mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 08:52:57 +00:00
[LIBXML2] Update to version 2.9.14. CORE-17766
This commit is contained in:
parent
7244e0c5c6
commit
8940614a78
16 changed files with 226 additions and 232 deletions
7
sdk/lib/3rdparty/libxml2/parser.c
vendored
7
sdk/lib/3rdparty/libxml2/parser.c
vendored
|
@ -2208,7 +2208,8 @@ xmlSkipBlankChars(xmlParserCtxtPtr ctxt) {
|
|||
ctxt->input->col++;
|
||||
}
|
||||
cur++;
|
||||
res++;
|
||||
if (res < INT_MAX)
|
||||
res++;
|
||||
if (*cur == 0) {
|
||||
ctxt->input->cur = cur;
|
||||
xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
|
||||
|
@ -2244,7 +2245,8 @@ xmlSkipBlankChars(xmlParserCtxtPtr ctxt) {
|
|||
* by the attachment of one leading and one following space (#x20)
|
||||
* character."
|
||||
*/
|
||||
res++;
|
||||
if (res < INT_MAX)
|
||||
res++;
|
||||
}
|
||||
}
|
||||
return(res);
|
||||
|
@ -14749,7 +14751,6 @@ xmlCleanupParser(void) {
|
|||
xmlSchemaCleanupTypes();
|
||||
xmlRelaxNGCleanupTypes();
|
||||
#endif
|
||||
xmlResetLastError();
|
||||
xmlCleanupGlobals();
|
||||
xmlCleanupThreads(); /* must be last if called not from the main thread */
|
||||
xmlCleanupMemory();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue