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

final touch to #102800 fix Daniel

* xsltproc/xsltproc.c: final touch to #102800 fix
Daniel
This commit is contained in:
Daniel Veillard
2003-01-10 09:35:13 +00:00
parent e87939b65d
commit 921808c7b5
2 changed files with 6 additions and 2 deletions

View File

@@ -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

View File

@@ -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