[svn-commits] tilghman: trunk r221920 - /trunk/main/logger.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Oct 1 22:04:40 CDT 2009


Author: tilghman
Date: Thu Oct  1 22:04:34 2009
New Revision: 221920

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=221920
Log:
Initialize a variable that we check immediately upon startup.
(closes issue #15973)
 Reported by: atis

Modified:
    trunk/main/logger.c

Modified: trunk/main/logger.c
URL: http://svnview.digium.com/svn/asterisk/trunk/main/logger.c?view=diff&rev=221920&r1=221919&r2=221920
==============================================================================
--- trunk/main/logger.c (original)
+++ trunk/main/logger.c Thu Oct  1 22:04:34 2009
@@ -139,7 +139,7 @@
 static AST_LIST_HEAD_STATIC(logmsgs, logmsg);
 static pthread_t logthread = AST_PTHREADT_NULL;
 static ast_cond_t logcond;
-static int close_logger_thread;
+static int close_logger_thread = 0;
 
 static FILE *qlog;
 




More information about the svn-commits mailing list