Don't bother freeing a bunch of stuff at exit, since it takes far too long and accomplishes nothing.

git-svn-id: https://svn.musicpd.org/mpd/trunk@4396 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
J. Alexander Treuman 2006-07-18 15:50:10 +00:00
parent 47037c6ac9
commit e6b0d82c2e
1 changed files with 6 additions and 3 deletions

View File

@ -613,10 +613,13 @@ int main(int argc, char * argv[]) {
savePlaylistState();
saveAudioDevicesState();
freeAllInterfaces();
closeAllListenSockets();
closeMp3Directory();
closeAllListenSockets();
/* This slows shutdown immensely, and doesn't really accomplish
* anything. Uncomment when we rewrite tagTracker to use a tree. */
/*closeMp3Directory();*/
finishPlaylist();
freePlayerData();
finishAudioDriver();