patch from Mark Vakoc about an incorrect attribute document pointer.
authorDaniel Veillard <veillard@src.gnome.org>
Thu, 30 Sep 2004 06:20:59 +0000 (06:20 +0000)
committerDaniel Veillard <veillard@src.gnome.org>
Thu, 30 Sep 2004 06:20:59 +0000 (06:20 +0000)
* libxslt/templates.c: patch from Mark Vakoc about an incorrect
  attribute document pointer.
Daniel

ChangeLog
libxslt/templates.c

index 967a7f2..b3a906d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu Sep 30 08:19:28 CEST 2004 Daniel Veillard <daniel@veillard.com>
+
+       * libxslt/templates.c: patch from Mark Vakoc about an incorrect
+         attribute document pointer.
+
 Thu Sep 30 08:13:57 CEST 2004 Daniel Veillard <daniel@veillard.com>
 
        * doc/tutorial2/libxslt_pipes.*: updated the tutorial from Panagiotis
index a2af1b2..2eb97e6 100644 (file)
@@ -532,7 +532,7 @@ xsltAttrListTemplateProcess(xsltTransformContextPtr ctxt,
         q = xsltAttrTemplateProcess(ctxt, target, cur);
        if (q != NULL) {
            q->parent = target;
-           q->doc = ctxt->output;
+           q->doc = target->doc;
            if (ret == NULL) {
                ret = q;
            }