mcatan      2004/05/08 06:05:05

  Modified:    src      rollingfileappender.cpp
               .        ChangeLog
  Log:
  Fixed MutexException thrown while destroying RollingFileAppender
  
  Revision  Changes    Path
  1.11      +5 -0      logging-log4cxx/src/rollingfileappender.cpp
  
  Index: rollingfileappender.cpp
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/src/rollingfileappender.cpp,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- rollingfileappender.cpp   22 Apr 2004 21:21:34 -0000      1.10
  +++ rollingfileappender.cpp   8 May 2004 13:05:05 -0000       1.11
  @@ -42,6 +42,11 @@
   {
   }
   
  +RollingFileAppender::~RollingFileAppender()
  +{
  +     finalize();
  +}
  +
   // synchronization not necessary since doAppend is alreasy synched
   void RollingFileAppender::rollOver()
   {
  
  
  
  1.28      +4 -2      logging-log4cxx/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/ChangeLog,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -r1.27 -r1.28
  --- ChangeLog 21 Apr 2004 21:34:27 -0000      1.27
  +++ ChangeLog 8 May 2004 13:05:05 -0000       1.28
  @@ -7,8 +7,10 @@
   * Fixed conflict with Windows macros "min" and "max", by renaming
     StrictMath::min and StrictMath::max to StrictMath::minimum and
     StrictMath::maximum.
  -* Port to HPUX 11.0
  -* Fixed segmentation fault in PropertyConfigurator
  +* Port to HPUX 11.0.
  +* Fixed segmentation fault in PropertyConfigurator.
  +* Port to Solaris.
  +* Fixed MutexException thrown while destroying RollingFileAppender.
   
   Version 0.9.6 (2004-04-11)
   ==========================
  
  
  

Reply via email to