+Wed Oct 27 17:00:54 CEST 2004 Daniel Veillard <daniel@veillard.com>
+
+ * libxslt/transform.c: another dictionnary/string interning fix
+
Wed Oct 27 00:00:07 CEST 2004 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c: fix to force string interning on generated
}
if (res == NULL)
goto error;
+ res->dict = ctxt->dict;
+ xmlDictReference(res->dict);
} else if (xmlStrEqual(method, (const xmlChar *) "xhtml")) {
xsltTransformError(ctxt, NULL, inst,
"xsltDocumentElem: unsupported method xhtml\n",
res = htmlNewDocNoDtD(doctypeSystem, doctypePublic);
if (res == NULL)
goto error;
+ res->dict = ctxt->dict;
+ xmlDictReference(res->dict);
} else if (xmlStrEqual(method, (const xmlChar *) "text")) {
ctxt->type = XSLT_OUTPUT_TEXT;
res = xmlNewDoc(style->version);