You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by db...@apache.org on 2002/06/27 23:48:32 UTC

cvs commit: xml-xalan/c/src/XPath XPathExpression.cpp

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: xalan-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xalan-cvs-help@xml.apache.org