1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-08-01 10:06:59 +03:00

debugged and fixed initialization problems which were giving troubles on

* parser.c parserInternals.c threads.c: debugged and fixed
  initialization problems which were giving troubles on SMP
  boxes.
Daniel
This commit is contained in:
Daniel Veillard
2001-10-14 09:56:15 +00:00
parent 6661ffa5a9
commit 6f35029186
4 changed files with 67 additions and 4 deletions

View File

@ -10188,7 +10188,9 @@ void
xmlInitParser(void) {
if (xmlParserInitialized) return;
initGenericErrorDefaultFunc(NULL);
xmlInitThreads();
xmlInitMemory();
initGenericErrorDefaultFunc(NULL);
xmlInitCharEncodingHandlers();
xmlInitializePredefinedEntities();