2
0
mirror of https://github.com/GNOME/libxml2.git synced 2025-03-31 19:10:28 +08:00

Martin Stoilov pointed out a potential leak in xmlCreateMemoryParserCtxt

* parser.c: Martin Stoilov pointed out a potential leak in
  xmlCreateMemoryParserCtxt
Daniel
This commit is contained in:
Daniel Veillard 2002-11-19 08:11:14 +00:00
parent bc6e1a3857
commit a7e05b4fce
2 changed files with 10 additions and 1 deletions

@ -1,3 +1,8 @@
Tue Nov 19 09:09:04 CET 2002 Daniel Veillard <daniel@veillard.com>
* parser.c: Martin Stoilov pointed out a potential leak in
xmlCreateMemoryParserCtxt
Mon Nov 18 16:05:51 CET 2002 Daniel Veillard <daniel@veillard.com>
* HTMLparser.c: fixed bug #98879 a corner case when 0 is

@ -10483,10 +10483,14 @@ xmlCreateMemoryParserCtxt(const char *buffer, int size) {
return(NULL);
buf = xmlParserInputBufferCreateMem(buffer, size, XML_CHAR_ENCODING_NONE);
if (buf == NULL) return(NULL);
if (buf == NULL) {
xmlFreeParserCtxt(ctxt);
return(NULL);
}
input = xmlNewInputStream(ctxt);
if (input == NULL) {
xmlFreeParserInputBuffer(buf);
xmlFreeParserCtxt(ctxt);
return(NULL);
}