Commit 405c102c authored by Max Kellermann's avatar Max Kellermann

output: deinitialize notify object

Free memory allocated by the notify object (GMutex, GCond) when it's not used by the output object anymore.
parent 97ae4a49
......@@ -140,6 +140,8 @@ void audio_output_finish(struct audio_output *audioOutput)
audioOutput->plugin->finish(audioOutput->data);
if (audioOutput->convBuffer)
free(audioOutput->convBuffer);
notify_deinit(&audioOutput->notify);
}
void audio_output_send_tag(struct audio_output *audioOutput,
......
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