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);
                        }
  
  
  

Reply via email to