You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by "Bill Blough (JIRA)" <ji...@apache.org> on 2013/08/03 06:23:48 UTC

[jira] [Created] (XALANC-752) Recursive xsl:call-template exhausts memory

Bill Blough created XALANC-752:
----------------------------------

             Summary: Recursive xsl:call-template exhausts memory
                 Key: XALANC-752
                 URL: https://issues.apache.org/jira/browse/XALANC-752
             Project: XalanC
          Issue Type: Bug
          Components: XalanC
    Affects Versions: 1.11
         Environment: Debian GNU/Linux
            Reporter: Bill Blough
            Assignee: Steven J. Hathaway
            Priority: Critical


Forwarded from http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=718315

When using the following template, recursion occurs in an unbounded fashion, eventually exhausting all memory.

$ cat test.xsl
<xsl:stylesheet version="1.0"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/" name="add">
  <xsl:call-template name="add"/>
</xsl:template>

</xsl:stylesheet>

To reproduce:

$ TestXSLT -in test.xsl -xsl test.xsl

The Xalan executable exhibits the same behavior.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@xalan.apache.org
For additional commands, e-mail: dev-help@xalan.apache.org