mcatan      2004/04/21 14:34:27

  Modified:    src      propertyconfigurator.cpp
               .        ChangeLog
  Log:
  Fixed segmentation fault in PropertyConfigurator
  
  Revision  Changes    Path
  1.10      +2 -1      logging-log4cxx/src/propertyconfigurator.cpp
  
  Index: propertyconfigurator.cpp
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/src/propertyconfigurator.cpp,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- propertyconfigurator.cpp  28 Feb 2004 15:07:50 -0000      1.9
  +++ propertyconfigurator.cpp  21 Apr 2004 21:34:27 -0000      1.10
  @@ -315,7 +315,8 @@
                }
   
                LogLog::debug(_T("Category ") + loggerName +
  -                     _T(" set to ") + logger->getLevel()->toString());
  +                     _T(" set to ") + ((logger->getLevel() != 0 )? 
  +                     logger->getLevel()->toString() : _T("null")));
        }
   
        // Begin by removing all existing appenders.
  
  
  
  1.27      +1 -0      logging-log4cxx/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/ChangeLog,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- ChangeLog 18 Apr 2004 08:11:24 -0000      1.26
  +++ ChangeLog 21 Apr 2004 21:34:27 -0000      1.27
  @@ -8,6 +8,7 @@
     StrictMath::min and StrictMath::max to StrictMath::minimum and
     StrictMath::maximum.
   * Port to HPUX 11.0
  +* Fixed segmentation fault in PropertyConfigurator
   
   Version 0.9.6 (2004-04-11)
   ==========================
  
  
  

Reply via email to