diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2012-05-26 15:50:18 +0200 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2012-05-26 17:46:43 +0200 |
commit | ed7b2597a439c27e60d0b4cec85e801c9099173c (patch) | |
tree | 72021f19cf618cf78036cccf7c1d91e280360282 /src/player.c | |
parent | 2c5bcc5ee10d6e982daa6660ba1925b3d95a2922 (diff) | |
download | pianobar-ed7b2597a439c27e60d0b4cec85e801c9099173c.tar.gz pianobar-ed7b2597a439c27e60d0b4cec85e801c9099173c.tar.bz2 pianobar-ed7b2597a439c27e60d0b4cec85e801c9099173c.zip |
Move mutex initalization to main thread
Closes #250.
Diffstat (limited to 'src/player.c')
-rw-r--r-- | src/player.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/player.c b/src/player.c index 733a315..3877906 100644 --- a/src/player.c +++ b/src/player.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2008-2011 +Copyright (c) 2008-2012 Lars-Dominik Braun <lars@6xq.net> Permission is hereby granted, free of charge, to any person obtaining a copy @@ -421,7 +421,6 @@ void *BarPlayerThread (void *data) { WaitressReturn_t wRet = WAITRESS_RET_ERR; /* init handles */ - pthread_mutex_init (&player->pauseMutex, NULL); player->waith.data = (void *) player; /* extraHeaders will be initialized later */ player->waith.extraHeaders = extraHeaders; @@ -500,7 +499,6 @@ void *BarPlayerThread (void *data) { ao_close(player->audioOutDevice); WaitressFree (&player->waith); - pthread_mutex_destroy (&player->pauseMutex); free (player->buffer); player->mode = PLAYER_FINISHED_PLAYBACK; |