mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
xmllint: Fix memory leak in parseFile
Short-lived regression.
This commit is contained in:
parent
0f4d36e055
commit
d39e5714b0
17
xmllint.c
17
xmllint.c
@ -1927,6 +1927,10 @@ error:
|
||||
static xmlDocPtr
|
||||
parseFile(const char *filename, xmlParserCtxtPtr ctxt) {
|
||||
xmlDocPtr doc = NULL;
|
||||
int errNo;
|
||||
#ifdef LIBXML_VALID_ENABLED
|
||||
int valid;
|
||||
#endif
|
||||
|
||||
if ((generate) && (filename == NULL)) {
|
||||
xmlNodePtr n;
|
||||
@ -2041,25 +2045,34 @@ parseFile(const char *filename, xmlParserCtxtPtr ctxt) {
|
||||
xmlParseChunk(ctxt, chars, 0, 1);
|
||||
|
||||
doc = ctxt->myDoc;
|
||||
errNo = ctxt->errNo;
|
||||
#ifdef LIBXML_VALID_ENABLED
|
||||
valid = ctxt->valid;
|
||||
#endif
|
||||
xmlFreeParserCtxt(ctxt);
|
||||
if (f != stdin)
|
||||
fclose(f);
|
||||
} else
|
||||
#endif /* LIBXML_PUSH_ENABLED */
|
||||
{
|
||||
doc = parseXml(ctxt, filename);
|
||||
errNo = ctxt->errNo;
|
||||
#ifdef LIBXML_VALID_ENABLED
|
||||
valid = ctxt->valid;
|
||||
#endif
|
||||
|
||||
if (htmlout)
|
||||
xmlCtxtSetErrorHandler(ctxt, xmlHTMLError, ctxt);
|
||||
}
|
||||
|
||||
if (doc == NULL) {
|
||||
if (ctxt->errNo == XML_ERR_NO_MEMORY)
|
||||
if (errNo == XML_ERR_NO_MEMORY)
|
||||
progresult = XMLLINT_ERR_MEM;
|
||||
else
|
||||
progresult = XMLLINT_ERR_RDFILE;
|
||||
} else {
|
||||
#ifdef LIBXML_VALID_ENABLED
|
||||
if ((options & XML_PARSE_DTDVALID) && (ctxt->valid == 0))
|
||||
if ((options & XML_PARSE_DTDVALID) && (valid == 0))
|
||||
progresult = XMLLINT_ERR_VALID;
|
||||
#endif /* LIBXML_VALID_ENABLED */
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user