Axel Söding-Freiherr von Blomberg created XALANC-761:
--------------------------------------------------------

             Summary: xalan segfaults on <xsl:include> statement
                 Key: XALANC-761
                 URL: https://issues.apache.org/jira/browse/XALANC-761
             Project: XalanC
          Issue Type: Bug
          Components: XalanC
    Affects Versions: 1.11
         Environment: Linux 3.13.0-46-generic #77-Ubuntu SMP i686 GNU/Linux
sudo apt-get install xalan
            Reporter: Axel Söding-Freiherr von Blomberg
            Assignee: Steven J. Hathaway


The bug can be reproduced with a minimal setup:

stylesheet2.xsl:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
<xsl:output method="xml"/>
<xsl:template name="foo">foo</xsl:template>
</xsl:stylesheet>

stylesheet1.xsl:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
<xsl:output method="xml"/>
<xsl:include href="stylesheet2.xsl"/>
<xsl:template match="foo">
</xsl:template>
</xsl:stylesheet>

foo.xml:
<?xml version='1.0' encoding='UTF-8'?>
<foo>
</foo>

$/usr/bin/Xalan foo.xml stylesheet1.xsl
segmentation fault



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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

Reply via email to