Skip to content
Snippets Groups Projects
Commit 8aa690dda85d authored by Daniel Veillard's avatar Daniel Veillard
Browse files

fixed a double free of stylesheet when applied to a standalone stylesheet

* xsltproc/xsltproc.c: fixed a double free of stylesheet
  when applied to a standalone stylesheet
Daniel
parent 7e2bc686c170
No related branches found
No related tags found
No related merge requests found
Fri Jan 17 17:43:43 CET 2003 Daniel Veillard <daniel@veillard.com>
* xsltproc/xsltproc.c: fixed a double free of stylesheet
when applied to a standalone stylesheet
Tue Jan 14 16:22:48 CET 2003 Daniel Veillard <daniel@veillard.com> Tue Jan 14 16:22:48 CET 2003 Daniel Veillard <daniel@veillard.com>
* configure.in: preparing release 2.0.24 * configure.in: preparing release 2.0.24
......
...@@ -765,6 +765,7 @@ ...@@ -765,6 +765,7 @@
/* it is an embedded stylesheet */ /* it is an embedded stylesheet */
xsltProcess(style, cur, argv[i]); xsltProcess(style, cur, argv[i]);
xsltFreeStylesheet(cur); xsltFreeStylesheet(cur);
cur = NULL;
goto done; goto done;
} }
cur = xsltParseStylesheetDoc(style); cur = xsltParseStylesheetDoc(style);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment