mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
xmllint: Make sure that parser options are used
This commit is contained in:
parent
25490528af
commit
d83ff954af
@ -3501,12 +3501,12 @@ xmllintMain(int argc, const char **argv, FILE *errStream,
|
|||||||
ctxt = htmlCreatePushParserCtxt(NULL, NULL, NULL, 0,
|
ctxt = htmlCreatePushParserCtxt(NULL, NULL, NULL, 0,
|
||||||
filename,
|
filename,
|
||||||
XML_CHAR_ENCODING_NONE);
|
XML_CHAR_ENCODING_NONE);
|
||||||
htmlCtxtUseOptions(ctxt, lint->options);
|
|
||||||
} else
|
} else
|
||||||
#endif /* LIBXML_PUSH_ENABLED */
|
#endif /* LIBXML_PUSH_ENABLED */
|
||||||
{
|
{
|
||||||
ctxt = htmlNewParserCtxt();
|
ctxt = htmlNewParserCtxt();
|
||||||
}
|
}
|
||||||
|
htmlCtxtUseOptions(ctxt, lint->options);
|
||||||
} else
|
} else
|
||||||
#endif /* LIBXML_HTML_ENABLED */
|
#endif /* LIBXML_HTML_ENABLED */
|
||||||
{
|
{
|
||||||
@ -3514,12 +3514,12 @@ xmllintMain(int argc, const char **argv, FILE *errStream,
|
|||||||
if (lint->push) {
|
if (lint->push) {
|
||||||
ctxt = xmlCreatePushParserCtxt(NULL, NULL, NULL, 0,
|
ctxt = xmlCreatePushParserCtxt(NULL, NULL, NULL, 0,
|
||||||
filename);
|
filename);
|
||||||
xmlCtxtUseOptions(ctxt, lint->options);
|
|
||||||
} else
|
} else
|
||||||
#endif /* LIBXML_PUSH_ENABLED */
|
#endif /* LIBXML_PUSH_ENABLED */
|
||||||
{
|
{
|
||||||
ctxt = xmlNewParserCtxt();
|
ctxt = xmlNewParserCtxt();
|
||||||
}
|
}
|
||||||
|
xmlCtxtUseOptions(ctxt, lint->options);
|
||||||
}
|
}
|
||||||
if (ctxt == NULL) {
|
if (ctxt == NULL) {
|
||||||
lint->progresult = XMLLINT_ERR_MEM;
|
lint->progresult = XMLLINT_ERR_MEM;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user