# HG changeset patch # User Daniel Veillard <veillard@src.gnome.org> # Date 1042191313 0 # Fri Jan 10 09:35:13 2003 +0000 # Node ID 7281583cd92c1491dd9d08ce1269262e06aa5622 # Parent b51a899ef6c6e78db78e48d8292f0cedce112469 final touch to #102800 fix Daniel * xsltproc/xsltproc.c: final touch to #102800 fix Daniel diff --git a/ChangeLog b/ChangeLog --- 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 --- a/xsltproc/xsltproc.c +++ b/xsltproc/xsltproc.c @@ -547,7 +547,7 @@ (!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 @@ 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