[mpd] Add missing close for command pipe on deinit

This commit is contained in:
chme 2015-12-19 08:46:38 +01:00
parent fc8ab41f29
commit 3b7e1b2737

View File

@ -4727,4 +4727,6 @@ void mpd_deinit(void)
// Close pipes // Close pipes
close(g_exit_pipe[0]); close(g_exit_pipe[0]);
close(g_exit_pipe[1]); close(g_exit_pipe[1]);
close(g_cmd_pipe[0]);
close(g_cmd_pipe[1]);
} }