diff --git a/libexslt/functions.c b/libexslt/functions.c index e7bb2f14..159e93da 100644 --- a/libexslt/functions.c +++ b/libexslt/functions.c @@ -562,6 +562,7 @@ exsltFuncResultComp (xsltStylesheetPtr style, xmlNodePtr inst, xsltGenericError(xsltGenericErrorContext, "exsltFuncResultElem: only xsl:fallback is " "allowed to follow func:result\n"); + style->errors++; return (NULL); } /* it is an error for a func:result element to not be a descendant @@ -578,6 +579,7 @@ exsltFuncResultComp (xsltStylesheetPtr style, xmlNodePtr inst, xsltGenericError(xsltGenericErrorContext, "func:result element not a descendant " "of a func:function\n"); + style->errors++; return (NULL); } if ((test->ns != NULL) && @@ -589,6 +591,7 @@ exsltFuncResultComp (xsltStylesheetPtr style, xmlNodePtr inst, xsltGenericError(xsltGenericErrorContext, "func:result element not allowed within" " another func:result element\n"); + style->errors++; return (NULL); } } @@ -598,6 +601,7 @@ exsltFuncResultComp (xsltStylesheetPtr style, xmlNodePtr inst, xsltGenericError(xsltGenericErrorContext, "func:result element not allowed within" " a variable binding element\n"); + style->errors++; return (NULL); } } @@ -611,6 +615,7 @@ exsltFuncResultComp (xsltStylesheetPtr style, xmlNodePtr inst, xsltPrintErrorContext(NULL, NULL, NULL); xsltGenericError(xsltGenericErrorContext, "exsltFuncResultComp : malloc failed\n"); + style->errors++; return (NULL); } memset(ret, 0, sizeof(exsltFuncResultPreComp)); diff --git a/tests/docs/bug-174.xml b/tests/docs/bug-174.xml new file mode 100644 index 00000000..69d62f2c --- /dev/null +++ b/tests/docs/bug-174.xml @@ -0,0 +1 @@ + diff --git a/tests/general/bug-174.err b/tests/general/bug-174.err new file mode 100644 index 00000000..bc790a39 --- /dev/null +++ b/tests/general/bug-174.err @@ -0,0 +1 @@ +exsltFuncResultElem: only xsl:fallback is allowed to follow func:result diff --git a/tests/general/bug-174.out b/tests/general/bug-174.out new file mode 100644 index 00000000..e69de29b diff --git a/tests/general/bug-174.xsl b/tests/general/bug-174.xsl new file mode 100644 index 00000000..51991ef5 --- /dev/null +++ b/tests/general/bug-174.xsl @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + +