From ffe8b5483bb6591301a1280cf5a45d84ceb69d58 Mon Sep 17 00:00:00 2001 From: Dmytro Kryvyi Date: Fri, 17 May 2019 03:19:42 +0300 Subject: [PATCH] Fixed error spotted by valgrind. --- src/timer_run_loop.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/timer_run_loop.cpp b/src/timer_run_loop.cpp index 9874699..f06e813 100644 --- a/src/timer_run_loop.cpp +++ b/src/timer_run_loop.cpp @@ -30,7 +30,7 @@ namespace ThreadPoolTimer { TimerRunLoop::TimerRunLoop() : - _thread(NULL) + _thread(nullptr), _running(false) { _start(); }