queuearray: remove duplicate assignment

We've already done this earlier in the function,
and nothing has changed since we first read it.
This commit is contained in:
Tim-Philipp Müller 2015-05-30 12:39:19 +01:00
parent b174ec6903
commit 828ceacc68

View file

@ -269,7 +269,6 @@ gst_queue_array_drop_element (GstQueueArray * array, guint idx)
}
if (idx > first_item_index) {
element = array->array[idx];
/* idx is after first_item_index, move data to higher indices */
memmove (&array->array[first_item_index + 1],
&array->array[first_item_index],