Sometimes wrong results on a multithreaded environment
------------------------------------------------------

                 Key: XALANJ-2413
                 URL: https://issues.apache.org/jira/browse/XALANJ-2413
             Project: XalanJ2
          Issue Type: Bug
    Affects Versions: 2.6
         Environment: xalan 2.6
            Reporter: Bash


Running this xsl on a multithreaded environment against many xml files might 
return some bad results

<xsl:variable name="var1" select="a/b/c[last()]/d"/>
<xsl:call-template name="tempname">
        <xsl:with-param name="var"><xsl:value-of 
select="$var1"></xsl:value-of></xsl:with-param>
</xsl:call-template>

where this wont ..

<xsl:variable name="var1" select="a/b/c[last()]/d"/>
<xsl:call-template name="tempname">
        <xsl:with-param name="var2" select="$var1"></xsl:with-param>
</xsl:call-template>

Even tried to remove the last() from the select; the error ratio dropped down 
alot but still there.

Thanks



-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to