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

AttributesImpl operator= switches attribute value/name/type

           Summary: AttributesImpl operator= switches attribute
                    value/name/type
           Product: XalanC
           Version: 1.6
          Platform: All
        OS/Version: Other
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: XalanC
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


xalanc/PlatformSupport/AttributesImpl.cpp line 214 (CVS Rev 1.2):

AttributesImpl::operator=(const AttributesType& theRHS)
{
   ...

theTempList.addAttribute(
        theRHS.getQName(i),
        theRHS.getType(i),
        theRHS.getValue(i),
        theRHS.getURI(i),
        theRHS.getLocalName(i));

   ...
}

fix:

theTempList.addAttribute(
        theRHS.getURI(i),
        theRHS.getLocalName(i),
        theRHS.getQName(i),
        theRHS.getType(i),
        theRHS.getValue(i));

Reply via email to