From: Daniel Veillard Date: Wed, 31 Aug 2005 11:50:41 +0000 (+0000) Subject: fixed 314936 a dictionnary issue on text node merging, which probably X-Git-Tag: v1.1.28~288 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=df5b07743857c4134dd78a15b628e3426cf13aba;p=platform%2Fupstream%2Flibxslt.git fixed 314936 a dictionnary issue on text node merging, which probably * libxslt/transform.c: fixed 314936 a dictionnary issue on text node merging, which probably fixed #311267 too. Daniel --- diff --git a/ChangeLog b/ChangeLog index c15f24e..4773c81 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Aug 31 13:49:51 CEST 2005 Daniel Veillard + + * libxslt/transform.c: fixed 314936 a dictionnary issue on text + node merging, which probably fixed #311267 too. + Thu Aug 25 13:29:20 CEST 2005 Daniel Veillard * libxslt/xslt.c: libxslt should deallocate directly text node content diff --git a/libxslt/transform.c b/libxslt/transform.c index b56bdef..5ad625f 100644 --- a/libxslt/transform.c +++ b/libxslt/transform.c @@ -758,6 +758,7 @@ xsltCopyText(xsltTransformContextPtr ctxt, xmlNodePtr target, ctxt->lasttuse = len; } if (copy != NULL) { + copy->doc = target->doc; if (target != NULL) xmlAddChild(target, copy); } else {