fix compilation error in os x plugin
git-svn-id: https://svn.musicpd.org/mpd/trunk@3115 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
parent
52cdd0baf6
commit
754c29471f
@ -93,9 +93,9 @@ static int osx_initDriver(AudioOutput * audioOutput, ConfigParam * param) {
|
||||
|
||||
static void freeOsxData(OsxData * od) {
|
||||
if(od->buffer) free(od->buffer);
|
||||
pthread_mutex_destroy(&ret->mutex);
|
||||
pthread_cond_destroy(&ret->conditionFull);
|
||||
pthread_cond_destroy(&ret->conditionEmpty);
|
||||
pthread_mutex_destroy(&od->mutex);
|
||||
pthread_cond_destroy(&od->conditionFull);
|
||||
pthread_cond_destroy(&od->conditionEmpty);
|
||||
free(od);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user