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...@locus.apache.org on 2000/04/19 18:32:49 UTC

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

dbertoni    00/04/19 09:32:49

  Modified:    c/src/XPath MutableNodeRefList.cpp
  Log:
  Fixed bug in addNodeInDocumentOrder()
  
  Revision  Changes    Path
  1.7       +1 -1      xml-xalan/c/src/XPath/MutableNodeRefList.cpp
  
  Index: MutableNodeRefList.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XPath/MutableNodeRefList.cpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- MutableNodeRefList.cpp	2000/04/11 14:46:09	1.6
  +++ MutableNodeRefList.cpp	2000/04/19 16:32:49	1.7
  @@ -330,7 +330,7 @@
   				}
   			}
   
  -			if (i < size)
  +			if (i != size)
   			{
   				insertNode(node, i + 1);
   			}