mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
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:
parent
b174ec6903
commit
828ceacc68
1 changed files with 0 additions and 1 deletions
|
@ -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],
|
||||
|
|
Loading…
Reference in a new issue