summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVineeth TM <vineeth.tm@samsung.com>2015-11-11 15:02:39 +0900
committerSebastian Dröge <sebastian@centricular.com>2015-11-11 15:01:08 +0100
commitb61e1465b79c9c8ed5057b5dcc73e443fd3cce06 (patch)
treea185915f2b61b99bd320f66e47403e6e86c3a47a
parent797a0ca3765ab877f71e2150ff28d977db017757 (diff)
audio-quantize: Fix dither_buffer memory leak
https://bugzilla.gnome.org/show_bug.cgi?id=757928
-rw-r--r--gst-libs/gst/audio/audio-quantize.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gst-libs/gst/audio/audio-quantize.c b/gst-libs/gst/audio/audio-quantize.c
index 33618302c..ad2c00945 100644
--- a/gst-libs/gst/audio/audio-quantize.c
+++ b/gst-libs/gst/audio/audio-quantize.c
@@ -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);
}