mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
audio-quantize: Fix dither_buffer memory leak
https://bugzilla.gnome.org/show_bug.cgi?id=757928
This commit is contained in:
parent
797a0ca376
commit
b61e1465b7
1 changed files with 1 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue