fixed: close the mpd socket and stop the mpd client thread before exiting

This commit is contained in:
Bob van Loosen 2012-12-27 18:18:43 +01:00
parent e4d40a807c
commit 3d365f0ea9
2 changed files with 6 additions and 1 deletions

View file

@ -209,6 +209,9 @@ void CBitVis::Process()
}
m_jackclient.Disconnect();
m_mpdclient->StopThread();
delete m_mpdclient;
m_mpdclient = NULL;
}
void CBitVis::ProcessSignalfd()