cargilld    2004/04/22 03:47:44

  Modified:    c/src/xercesc/util RefHashTableOf.c
  Log:
  Misc fix to update fCount in the correct place.
  
  Revision  Changes    Path
  1.15      +4 -2      xml-xerces/c/src/xercesc/util/RefHashTableOf.c
  
  Index: RefHashTableOf.c
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/util/RefHashTableOf.c,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- RefHashTableOf.c  1 Mar 2004 15:03:08 -0000       1.14
  +++ RefHashTableOf.c  22 Apr 2004 10:47:44 -0000      1.15
  @@ -56,6 +56,9 @@
   
   /**
    * $Log$
  + * Revision 1.15  2004/04/22 10:47:44  cargilld
  + * Misc fix to update fCount in the correct place.
  + *
    * Revision 1.14  2004/03/01 15:03:08  peiyongz
    * new getter: getHashModulus
    *
  @@ -473,9 +476,8 @@
       {
           newBucket = new (fMemoryManager) RefHashTableBucketElem<TVal>(key, 
valueToAdopt, fBucketList[hashVal]);
           fBucketList[hashVal] = newBucket;
  +        fCount++;
       }
  -
  -    fCount++;
   }
   
   
  
  
  

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

Reply via email to