Skip to content

Commit

Permalink
Initialize m_initialWaiting in ctor (silence cppcheck)
Browse files Browse the repository at this point in the history
  • Loading branch information
Beirdo committed Jul 2, 2012
1 parent 4957e21 commit 6b444ad
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mythtv/libs/libmythbase/logging.cpp
Expand Up @@ -251,7 +251,8 @@ LoggerThread::LoggerThread(QString filename, bool progress, bool quiet,
MThread("Logger"),
m_waitNotEmpty(new QWaitCondition()),
m_waitEmpty(new QWaitCondition()),
m_aborted(false), m_filename(filename), m_progress(progress),
m_aborted(false), m_initialWaiting(true),
m_filename(filename), m_progress(progress),
m_quiet(quiet), m_appname(QCoreApplication::applicationName()),
m_tablename(table), m_facility(facility), m_pid(getpid()),
m_zmqContext(NULL), m_zmqSocket(NULL), m_initialTimer(NULL),
Expand Down

0 comments on commit 6b444ad

Please sign in to comment.