You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by bu...@apache.org on 2002/04/16 01:09:09 UTC

DO NOT REPLY [Bug 8134] New: - logic error in Function::Execute() for 3-argument functions

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=8134>.
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=8134

logic error in Function::Execute() for 3-argument functions

           Summary: logic error in Function::Execute() for 3-argument
                    functions
           Product: XalanC
           Version: 1.3.x
          Platform: PC
        OS/Version: Windows NT/2K
            Status: NEW
          Severity: Blocker
          Priority: Other
         Component: XPathC
        AssignedTo: xalan-dev@xml.apache.org
        ReportedBy: basil@macromedia.com


, XPath/Function.cpp, line 100 is

	else if (theArgCount == 2)

should read:

	else if (theArgCount == 3)

Symptom: extension functions with 3 arguments are never invoked properly.