mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 16:08:51 +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) {
|
if (idx > first_item_index) {
|
||||||
element = array->array[idx];
|
|
||||||
/* idx is after first_item_index, move data to higher indices */
|
/* idx is after first_item_index, move data to higher indices */
|
||||||
memmove (&array->array[first_item_index + 1],
|
memmove (&array->array[first_item_index + 1],
|
||||||
&array->array[first_item_index],
|
&array->array[first_item_index],
|
||||||
|
|
Loading…
Reference in a new issue