Merge pull request #3477 from mmastrac/memorywatcher_crash

MemoryWatcher: Initialize m_running
This commit is contained in:
Pierre Bourdon 2016-01-09 16:11:42 +01:00
commit 5db10d83f7
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ private:
void WatcherThread();
std::thread m_watcher_thread;
std::atomic_bool m_running;
std::atomic_bool m_running{false};
int m_fd;
sockaddr_un m_addr;