dbertoni    2002/06/27 14:48:32

  Modified:    c/src/XPath XPathExpression.cpp
  Log:
  Fix bug 6917.
  
  Revision  Changes    Path
  1.36      +4 -1      xml-xalan/c/src/XPath/XPathExpression.cpp
  
  Index: XPathExpression.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XPath/XPathExpression.cpp,v
  retrieving revision 1.35
  retrieving revision 1.36
  diff -u -r1.35 -r1.36
  --- XPathExpression.cpp       26 Jun 2002 01:20:01 -0000      1.35
  +++ XPathExpression.cpp       27 Jun 2002 21:48:32 -0000      1.36
  @@ -578,7 +578,10 @@
        else
        {
                // Insert -1 for each element of the opcode.
  -             m_opMap.insert(m_opMap.begin() + theIndex, theOpCodeLength, -1);
  +             m_opMap.insert(
  +                     m_opMap.begin() + theIndex,
  +                     OpCodeMapSizeType(theOpCodeLength),
  +                     -1);
   
                // Set the member that contains the last insert/appended
                // index.
  
  
  

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

Reply via email to