audio-quantize: Fix dither_buffer memory leak

https://bugzilla.gnome.org/show_bug.cgi?id=757928
This commit is contained in:
Vineeth TM 2015-11-11 15:02:39 +09:00 committed by Sebastian Dröge
parent 797a0ca376
commit b61e1465b7

View file

@ -471,6 +471,7 @@ gst_audio_quantize_free (GstAudioQuantize * quant)
g_free (quant->error_buf);
g_free (quant->coeffs);
g_free (quant->last_random);
g_free (quant->dither_buf);
g_slice_free (GstAudioQuantize, quant);
}