1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-26 20:25:14 +03:00

add xmlThrDefMutex = NULL in xmlCleanupGlobals() as suggested by Rob

* globals.c: add xmlThrDefMutex = NULL in xmlCleanupGlobals()
  as suggested by Rob Richards
Daniel
This commit is contained in:
Daniel Veillard 2003-07-15 20:04:34 +00:00
parent 34ba387936
commit 2009c4ed4d
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Tue Jul 15 22:03:13 CEST 2003 Daniel Veillard <daniel@veillard.com>
* globals.c: add xmlThrDefMutex = NULL in xmlCleanupGlobals()
as suggested by Rob Richards
Tue Jul 15 15:30:55 CEST 2003 Daniel Veillard <daniel@veillard.com>
* DOCBparser.c HTMLparser.c entities.c parser.c relaxng.c

View File

@ -46,8 +46,10 @@ void xmlInitGlobals()
void xmlCleanupGlobals()
{
if (xmlThrDefMutex != NULL)
if (xmlThrDefMutex != NULL) {
xmlFreeMutex(xmlThrDefMutex);
xmlThrDefMutex = NULL;
}
}
/************************************************************************