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: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to