oops last commit introduced a memory leak. Daniel

* HTMLparser.c: oops last commit introduced a memory leak.
Daniel
This commit is contained in:
Daniel Veillard 2003-05-13 22:54:05 +00:00
parent e8b09e40f7
commit 104caa3df0
2 changed files with 5 additions and 4 deletions

View File

@ -1,3 +1,7 @@
Tue May 13 18:30:34 EDT 2003 Daniel Veillard <daniel@veillard.com>
* HTMLparser.c: oops last commit introduced a memory leak.
Tue May 13 18:10:38 EDT 2003 Daniel Veillard <daniel@veillard.com>
* xmllint.c doc/xmllint.xml: added --nonet option

View File

@ -5347,14 +5347,10 @@ htmlCreateFileParserCtxt(const char *filename, const char *encoding)
{
htmlParserCtxtPtr ctxt;
htmlParserInputPtr inputStream;
xmlParserInputBufferPtr buf;
char *canonicFilename;
/* htmlCharEncoding enc; */
xmlChar *content, *content_line = (xmlChar *) "charset=";
buf = xmlParserInputBufferCreateFilename(filename, XML_CHAR_ENCODING_NONE);
if (buf == NULL) return(NULL);
ctxt = (htmlParserCtxtPtr) xmlMalloc(sizeof(htmlParserCtxt));
if (ctxt == NULL) {
xmlGenericError(xmlGenericErrorContext, "malloc failed\n");
@ -5367,6 +5363,7 @@ htmlCreateFileParserCtxt(const char *filename, const char *encoding)
if (xmlDefaultSAXHandler.error != NULL) {
xmlDefaultSAXHandler.error(NULL, "out of memory\n");
}
xmlFreeParserCtxt(ctxt);
return(NULL);
}