patch from Daniel Zimmermann fixing a memory leak in an edge case, solves

* threads.c: patch from Daniel Zimmermann fixing a memory leak
  in an edge case, solves #562230
Daniel

svn path=/trunk/; revision=3809
This commit is contained in:
Daniel Veillard 2009-01-18 14:57:04 +00:00
parent 1fb2e0dfc6
commit bf2ebff0f1
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Sun Jan 18 15:55:18 CET 2009 Daniel Veillard <daniel@veillard.com>
* threads.c: patch from Daniel Zimmermann fixing a memory leak
in an edge case, solves #562230
Sun Jan 18 15:06:05 CET 2009 Daniel Veillard <daniel@veillard.com>
* include/libxml/parserInternals.h SAX2.c: add a new define

View File

@ -698,6 +698,7 @@ xmlGetGlobalState(void)
if (p == NULL) {
xmlGenericError(xmlGenericErrorContext,
"xmlGetGlobalState: out of memory\n");
xmlFreeGlobalState(tsd);
return(NULL);
}
p->memory = tsd;