DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18590>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18590

assert on subQueryResults->getDocumentOrder() == true in XPath.cpp, line 1408





------- Additional Comments From [EMAIL PROTECTED]  2003-04-02 00:40 -------
I could not reproduce this with the latest CVS code using a document and 
stylesheet I deduced from your posting.  Could you either try this with the 
latest CVS code, or post a complete source document and stylesheet that 
reproduces the problem?  For reference, here's what I used:

<?xml version="1.0"?> 
<MappingMerge>
    <MappingCache>
    </MappingCache>
</MappingMerge>

<?xml version="1.0"?> 
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; version="1.0">

<xsl:template match="MappingMerge">
  <xsl:variable name="test1" select="MappingCache[1]"/>
  <xsl:copy-of select="$test1[1]"/> <!-- Here -->
</xsl:template>
 
</xsl:stylesheet>

which produced the following output:

<?xml version="1.0" encoding="UTF-8"?>
<MappingCache>
    </MappingCache>

Reply via email to