1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-04 08:02:34 +03:00

Improve HTML fuzzer stability

Call htmlInitAutoClose during fuzzer initialization to fix stability
issue. Leave a note concerning problems with this function.
This commit is contained in:
Nick Wellnhofer
2021-02-22 12:25:29 +01:00
parent 09320f0551
commit de1b51eddc
2 changed files with 6 additions and 0 deletions

View File

@ -1324,6 +1324,10 @@ htmlCheckAutoClose(const xmlChar * newtag, const xmlChar * oldtag)
int i, indx;
const char **closed = NULL;
/*
* FIXME: This is not thread-safe and should be called from
* xmlInitParser instead.
*/
if (htmlStartCloseIndexinitialized == 0)
htmlInitAutoClose();