1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-02-22 21:57:21 +03:00

add xmlCleanupParser() before leaving Daniel

* example/gjobread.c: add xmlCleanupParser() before leaving
Daniel
This commit is contained in:
Daniel Veillard 2001-08-15 20:46:57 +00:00
parent 3d6ae1ce19
commit 5aac4e490d
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Wed Aug 15 22:46:01 CEST 2001 Daniel Veillard <daniel@veillard.com>
* example/gjobread.c: add xmlCleanupParser() before leaving
Wed Aug 15 14:57:08 CEST 2001 Daniel Veillard <daniel@veillard.com>
* config.h.in configure.in include/libxml/xmlwin32version.h:

View File

@ -290,5 +290,9 @@ int main(int argc, char **argv) {
fprintf( stderr, "Error parsing file '%s'\n", argv[i]);
}
/* Clean up everything else before quitting. */
xmlCleanupParser();
return(0);
}