mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
parser: Fix regressions from previous commits
- Fix memory leak in xmlParseNmtoken. - Fix buffer overread after htmlParseCharDataInternal.
This commit is contained in:
parent
9ef2a9abf3
commit
067986fa67
@ -3203,6 +3203,7 @@ htmlParseCharDataInternal(htmlParserCtxtPtr ctxt, int readahead) {
|
||||
} else {
|
||||
COPY_BUF(l,buf,nbchar,cur);
|
||||
}
|
||||
NEXTL(l);
|
||||
if (nbchar >= HTML_PARSER_BIG_BUFFER_SIZE) {
|
||||
buf[nbchar] = 0;
|
||||
|
||||
@ -3228,7 +3229,6 @@ htmlParseCharDataInternal(htmlParserCtxtPtr ctxt, int readahead) {
|
||||
nbchar = 0;
|
||||
SHRINK;
|
||||
}
|
||||
NEXTL(l);
|
||||
cur = CUR_CHAR(l);
|
||||
}
|
||||
if (ctxt->instate == XML_PARSER_EOF)
|
||||
|
Loading…
x
Reference in New Issue
Block a user