diff options
author | Daniel Veillard <veillard@src.gnome.org> | 2002-03-01 09:15:28 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@src.gnome.org> | 2002-03-01 09:15:28 +0000 |
commit | c0d41a178b375171da1f9dbf9c4aa32b1d98c0a4 (patch) | |
tree | 746390e3ff236c7ef6a1a112f5a8db5a3522d0aa | |
parent | 248943af4cca51468e9f75eccd7605f250aa271c (diff) | |
download | libxslt-c0d41a178b375171da1f9dbf9c4aa32b1d98c0a4.tar.gz libxslt-c0d41a178b375171da1f9dbf9c4aa32b1d98c0a4.tar.bz2 libxslt-c0d41a178b375171da1f9dbf9c4aa32b1d98c0a4.zip |
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
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | TODO | 5 | ||||
-rw-r--r-- | xsltproc/xsltproc.c | 2 |
3 files changed, 10 insertions, 3 deletions
@@ -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> * python/generator.py python/libxslt.c: changes for the 'usual' @@ -4,9 +4,6 @@ * * ******** -Doc: - - manpage and doc for xsltproc - Design: - 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 @@ -119,6 +116,8 @@ Doc: - put a page at http://xmlsoft.org/XSLT/ - generate/transform the DocBook to HTML - add HTML to package + - manpage and doc for xsltproc + Error handling: -> check the version stuff, design a separate module for error interfacing diff --git a/xsltproc/xsltproc.c b/xsltproc/xsltproc.c index 16591e3e..798cf8c4 100644 --- a/xsltproc/xsltproc.c +++ b/xsltproc/xsltproc.c @@ -616,7 +616,9 @@ main(int argc, char **argv) done: xsltCleanupGlobals(); xmlCleanupParser(); +#ifdef WITH_MEM_DEBUG xmlMemoryDump(); +#endif return(errorno); } |