[threading] Follow-up small fix to CommandsQueue.

This commit is contained in:
Yuri Gorshenin 2015-04-03 17:10:13 +03:00 committed by Alex Zolotarev
parent f29c8e6f35
commit f3fc186d74

View file

@ -130,6 +130,7 @@ namespace core
void CommandsQueue::Executor::CancelCommand()
{
Routine * routine = m_thread.GetRoutineAs<Routine>();
CHECK(routine, ());
routine->CancelCommand();
}