auriemma    00/10/17 06:25:15

  Modified:    c/src/TestXSLT process.cpp
  Log:
  Initialize vector to 0 (required for AIX).
  
  Revision  Changes    Path
  1.44      +1 -1      xml-xalan/c/src/TestXSLT/process.cpp
  
  Index: process.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/TestXSLT/process.cpp,v
  retrieving revision 1.43
  retrieving revision 1.44
  diff -u -r1.43 -r1.44
  --- process.cpp       2000/10/14 01:35:51     1.43
  +++ process.cpp       2000/10/17 13:25:14     1.44
  @@ -1056,7 +1056,7 @@
                                         << endl
                                         << endl;
   
  -                             vector<XalanNode*>      
theNodes(theInstanceCount);
  +                             vector<XalanNode*>      
theNodes(theInstanceCount, 0);
   
                                XalanNode::getLiveInstances(theNodes.begin());
   
  
  
  

Reply via email to