1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-08-08 21:42:07 +03:00

similar to #72663 and #72658, don't memdump unless compiled explicitely

* xsltproc/xsltproc.c: similar to #72663 and #72658, don't memdump
  unless compiled explicitely with memory debugging switched on
* TODO: refreshed a bit
Daniel
This commit is contained in:
Daniel Veillard
2002-03-01 09:15:28 +00:00
parent 248943af4c
commit c0d41a178b
3 changed files with 10 additions and 3 deletions

View File

@@ -1,3 +1,9 @@
Fri Mar 1 10:14:07 CET 2002 Daniel Veillard <daniel@veillard.com>
* xsltproc/xsltproc.c: similar to #72663 and #72658, don't memdump
unless compiled explicitely with memory debugging switched on
* TODO: refreshed a bit
Fri Feb 22 23:44:57 CET 2002 Daniel Veillard <daniel@veillard.com> Fri Feb 22 23:44:57 CET 2002 Daniel Veillard <daniel@veillard.com>
* python/generator.py python/libxslt.c: changes for the 'usual' * python/generator.py python/libxslt.c: changes for the 'usual'

5
TODO
View File

@@ -4,9 +4,6 @@
* * * *
******** ********
Doc:
- manpage and doc for xsltproc
Design: Design:
- seems that saving back XSLT stylesheet from a compiled form might - seems that saving back XSLT stylesheet from a compiled form might
be a bit ugly ... Yes forget about it, it's just twaeked to the extreme be a bit ugly ... Yes forget about it, it's just twaeked to the extreme
@@ -119,6 +116,8 @@ Doc:
- put a page at http://xmlsoft.org/XSLT/ - put a page at http://xmlsoft.org/XSLT/
- generate/transform the DocBook to HTML - generate/transform the DocBook to HTML
- add HTML to package - add HTML to package
- manpage and doc for xsltproc
Error handling: Error handling:
-> check the version stuff, design a separate module for error interfacing -> check the version stuff, design a separate module for error interfacing

View File

@@ -616,7 +616,9 @@ main(int argc, char **argv)
done: done:
xsltCleanupGlobals(); xsltCleanupGlobals();
xmlCleanupParser(); xmlCleanupParser();
#ifdef WITH_MEM_DEBUG
xmlMemoryDump(); xmlMemoryDump();
#endif
return(errorno); return(errorno);
} }