mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
Fix sanity check in htmlParseNameComplex
- (cur - len) can overflow. - Throw an internal error. Fixes bug 780077.
This commit is contained in:
parent
79c8a6b105
commit
f39e3be0dd
@ -2528,8 +2528,12 @@ htmlParseNameComplex(xmlParserCtxtPtr ctxt) {
|
||||
}
|
||||
}
|
||||
|
||||
if (ctxt->input->base > ctxt->input->cur - len)
|
||||
return(NULL);
|
||||
if (ctxt->input->cur - ctxt->input->base < len) {
|
||||
/* Sanity check */
|
||||
htmlParseErr(ctxt, XML_ERR_INTERNAL_ERROR,
|
||||
"unexpected change of input buffer", NULL, NULL);
|
||||
return (NULL);
|
||||
}
|
||||
|
||||
return(xmlDictLookup(ctxt->dict, ctxt->input->cur - len, len));
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user