mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
xmllint: Fix UAF with --push --repeat
Short-lived regression. Fixes #841.
This commit is contained in:
parent
9d7bbf1952
commit
dc6270d110
@ -349,6 +349,7 @@ parseXml(xmllintState *lint, const char *filename) {
|
||||
xmlParseChunk(ctxt, chars, 0, 1);
|
||||
|
||||
doc = ctxt->myDoc;
|
||||
ctxt->myDoc = NULL;
|
||||
if (f != stdin)
|
||||
fclose(f);
|
||||
return(doc);
|
||||
@ -427,6 +428,7 @@ parseHtml(xmllintState *lint, const char *filename) {
|
||||
}
|
||||
htmlParseChunk(ctxt, chars, 0, 1);
|
||||
doc = ctxt->myDoc;
|
||||
ctxt->myDoc = NULL;
|
||||
if (f != stdin)
|
||||
fclose(f);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user