diff options
author | Daniel Veillard <veillard@src.gnome.org> | 2003-01-10 09:35:13 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@src.gnome.org> | 2003-01-10 09:35:13 +0000 |
commit | 921808c7b584970a09866ce1bb808926b663974a (patch) | |
tree | 6d56140bd0d67017eea85666566e9f0c4c8be73e /xsltproc | |
parent | e87939b65dd8cd369feeef995c2d324f77da0452 (diff) | |
download | libxslt-921808c7b584970a09866ce1bb808926b663974a.tar.gz libxslt-921808c7b584970a09866ce1bb808926b663974a.tar.bz2 libxslt-921808c7b584970a09866ce1bb808926b663974a.zip |
final touch to #102800 fix Daniel
* xsltproc/xsltproc.c: final touch to #102800 fix
Daniel
Diffstat (limited to 'xsltproc')
-rw-r--r-- | xsltproc/xsltproc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xsltproc/xsltproc.c b/xsltproc/xsltproc.c index 35c6c3f2..36b846ae 100644 --- a/xsltproc/xsltproc.c +++ b/xsltproc/xsltproc.c @@ -547,7 +547,7 @@ main(int argc, char **argv) (!strcmp(argv[i], "-output")) || (!strcmp(argv[i], "--output"))) { i++; -#if defined(WIN32) +#if defined(WIN32) || defined (__CYGWIN__) output = xmlNormalizeWindowsPath(argv[i]); if (output == NULL) output = xmlStrdup(argv[i]); @@ -826,7 +826,7 @@ done: xsltFreeStylesheet(cur); for (i = 0;i < nbstrparams;i++) xmlFree(strparams[i]); -#if defined(WIN32) +#if defined(WIN32) || defined (__CYGWIN__) if (output != NULL) xmlFree(output); #endif |