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

Marc Liyanage pointed out that xmlCleanupParser() was missing

* parser.c: Marc Liyanage pointed out that xmlCleanupParser()
  was missing xmlCleanupInputCallbacks and xmlCleanupOutputCallbacks
  calls.
Daniel
This commit is contained in:
Daniel Veillard 2003-10-15 10:48:54 +00:00
parent 9339b74c09
commit 04054becf6
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,9 @@
Wed Oct 15 12:47:33 CEST 2003 Daniel Veillard <daniel@veillard.com>
* parser.c: Marc Liyanage pointed out that xmlCleanupParser()
was missing xmlCleanupInputCallbacks and xmlCleanupOutputCallbacks
calls.
Wed Oct 15 10:16:47 CEST 2003 Daniel Veillard <daniel@veillard.com>
* vms/build_libxml.com trionan.c: VMS patch from Craig A. Berry

View File

@ -11956,6 +11956,10 @@ xmlCleanupParser(void) {
xmlCleanupCharEncodingHandlers();
#ifdef LIBXML_CATALOG_ENABLED
xmlCatalogCleanup();
#endif
xmlCleanupInputCallbacks();
#ifdef LIBXML_OUTPUT_ENABLED
xmlCleanupOutputCallbacks();
#endif
xmlCleanupThreads();
xmlCleanupGlobals();