summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2001-05-28 10:55:59 +0000
committerDaniel Veillard <veillard@src.gnome.org>2001-05-28 10:55:59 +0000
commit9a207d6d0944abb977564e7b5dafaab30ab7cd41 (patch)
tree2234e0a2e9ec811321d2261efd98b87dc91f52fe
parent3690f0bdcc82326e6a410e3afe3b62759ec1f08b (diff)
downloadlibxslt-9a207d6d0944abb977564e7b5dafaab30ab7cd41.tar.gz
libxslt-9a207d6d0944abb977564e7b5dafaab30ab7cd41.tar.bz2
libxslt-9a207d6d0944abb977564e7b5dafaab30ab7cd41.zip
- libxslt/transform.c: William M. Brack found a small bug
when call-template didn't find the template. Daniel
-rw-r--r--ChangeLog5
-rw-r--r--libxslt/transform.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index b3911109..2da96c0b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Mon May 28 12:54:45 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
+
+ * libxslt/transform.c: William M. Brack found a small bug
+ when call-template didn't find the template.
+
Sat May 26 17:08:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/transform.c: fixed handling of PI and comments
diff --git a/libxslt/transform.c b/libxslt/transform.c
index 7cd51d5c..8ccf420e 100644
--- a/libxslt/transform.c
+++ b/libxslt/transform.c
@@ -1961,6 +1961,7 @@ xsltCallTemplate(xsltTransformContextPtr ctxt, xmlNodePtr node,
if (comp->templ == NULL) {
xsltGenericError(xsltGenericErrorContext,
"xslt:call-template : template %s not found\n", comp->name);
+ return;
}
}