summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--playlist.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/playlist.c b/playlist.c
index 36b51690..7f55eda0 100644
--- a/playlist.c
+++ b/playlist.c
@@ -103,7 +103,6 @@ static int plt_loading = 0; // disable sending event about playlist switch, conf
#if !DISABLE_LOCKING
static uintptr_t mutex;
-static uintptr_t mutex_plt;
#endif
#define LOCK {pl_lock();}
@@ -163,7 +162,6 @@ pl_init (void) {
playlist = &dummy_playlist;
#if !DISABLE_LOCKING
mutex = mutex_create ();
- mutex_plt = mutex_create ();
#endif
return 0;
}
@@ -193,10 +191,6 @@ pl_free (void) {
mutex_free (mutex);
mutex = 0;
}
- if (mutex_plt) {
- mutex_free (mutex_plt);
- mutex_plt = 0;
- }
#endif
playlist = NULL;
}