Commit 20731cc7 authored by Qball Cow's avatar Qball Cow

Fixed (tested in Fink and DarwinPorts) osX output plugin

git-svn-id: https://svn.musicpd.org/mpd/trunk@3500 09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent 3a579f36
......@@ -90,8 +90,8 @@ static int osx_initDriver(AudioOutput * audioOutput, ConfigParam * param) {
static void freeOsxData(OsxData * od) {
if(od->buffer) free(od->buffer);
pthread_mutex_destroy(&od->mutex, NULL);
pthread_cond_destroy(&od->condition, NULL);
pthread_mutex_destroy(&od->mutex);
pthread_cond_destroy(&od->condition);
free(od);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment