bufferlist: fix buffer leak in _remove()

This commit is contained in:
Tim-Philipp Müller 2014-06-16 20:29:56 +01:00
parent 8528026c3b
commit 608fb56707

View file

@ -283,14 +283,21 @@ gst_buffer_list_insert (GstBufferList * list, gint idx, GstBuffer * buffer)
* @idx: the index
* @length: the amount to remove
*
* Remove @length buffers starting from @idx in @list. The following buffers are
* moved to close the gap.
* Remove @length buffers starting from @idx in @list. The following buffers
* are moved to close the gap.
*/
void
gst_buffer_list_remove (GstBufferList * list, guint idx, guint length)
{
GstBuffer *buf;
gint i;
g_return_if_fail (GST_IS_BUFFER_LIST (list));
g_return_if_fail (idx < list->array->len);
for (i = idx; i < idx + length; ++i) {
buf = g_array_index (list->array, GstBuffer *, i);
gst_buffer_unref (buf);
}
g_array_remove_range (list->array, idx, length);
}