Fix LEDDeviceWrapper coredump when killing hyperiond

This commit is contained in:
LordGrey 2019-06-19 19:37:42 +02:00
parent 3ef037f6d7
commit fc7d888845
1 changed files with 1 additions and 1 deletions

View File

@ -146,5 +146,5 @@ void LedDeviceWrapper::stopDeviceThread()
QThread* oldThread = _ledDevice->thread();
delete _ledDevice; // fast desctruction
oldThread->quit(); // non blocking
oldThread->wait();
oldThread->wait();
}