diff --git a/src/kits/support/List.cpp b/src/kits/support/List.cpp index e61c5e1625..8edb4becac 100644 --- a/src/kits/support/List.cpp +++ b/src/kits/support/List.cpp @@ -289,7 +289,6 @@ BList::MoveItem(int32 fromIndex, int32 toIndex) if (fromIndex < toIndex) { memmove(fObjectList + fromIndex, fObjectList + fromIndex + 1, (toIndex - fromIndex) * sizeof(void *)); - fObjectList[toIndex] = tmpMover; } else if (fromIndex > toIndex) { memmove(fObjectList + toIndex + 1, fObjectList + toIndex, (fromIndex - toIndex) * sizeof(void *));