summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--xsltproc/xsltproc.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 931e041b..fa37bf70 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Fri Jan 10 10:34:23 CET 2003 Daniel Veillard <daniel@veillard.com>
+
+ * xsltproc/xsltproc.c: final touch to #102800 fix
+
Thu Jan 9 18:17:40 CET 2003 Daniel Veillard <daniel@veillard.com>
* xsltproc/xsltproc.c: tried to fix #102800 for good. Reenabled
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