diff --git a/modules/footstone/src/task_runner.cc b/modules/footstone/src/task_runner.cc index 1b400caf319..b8a60590a26 100644 --- a/modules/footstone/src/task_runner.cc +++ b/modules/footstone/src/task_runner.cc @@ -201,7 +201,9 @@ TimeDelta TaskRunner::GetNextTimeDelta(TimePoint now) { void TaskRunner::NotifyWorker() { auto worker = worker_.lock(); - FOOTSTONE_CHECK(worker); + if (!worker) { + return; + } worker->Notify(); }