There was used 'min(src->len, dst->len)' to determine the number of bytes to copy. However, this check is redundant because the condition 'if (unlikely(src->len > dst->len))' above already ensures that 'src->len' will not exceed 'dst->len'.
This patch simplifies the memcpy operation by using 'src->len' directly as the copy length, making the code more straightforward and slightly more efficient.
There was used 'min(src->len, dst->len)' to determine the number of bytes to copy. However, this check is redundant because the condition 'if (unlikely(src->len > dst->len))' above already ensures that 'src->len' will not exceed 'dst->len'.
This patch simplifies the memcpy operation by using 'src->len' directly as the copy length, making the code more straightforward and slightly more efficient.