summaryrefslogtreecommitdiffstats
path: root/player/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'player/main.c')
-rw-r--r--player/main.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/player/main.c b/player/main.c
index 160b5deab3..3bed127de7 100644
--- a/player/main.c
+++ b/player/main.c
@@ -131,6 +131,10 @@ void mp_destroy(struct MPContext *mpctx)
shutdown_clients(mpctx);
+#if !defined(__MINGW32__)
+ mp_uninit_ipc(mpctx);
+#endif
+
command_uninit(mpctx);
osd_free(mpctx->osd);
@@ -441,6 +445,10 @@ int mp_initialize(struct MPContext *mpctx)
// where this is safe.
mp_load_scripts(mpctx);
+#if !defined(__MINGW32__)
+ mp_init_ipc(mpctx);
+#endif
+
if (opts->shuffle)
playlist_shuffle(mpctx->playlist);