In m_pulldown() replace memmove() with memcpy().
authorbluhm <bluhm@openbsd.org>
Thu, 29 Aug 2024 16:42:30 +0000 (16:42 +0000)
committerbluhm <bluhm@openbsd.org>
Thu, 29 Aug 2024 16:42:30 +0000 (16:42 +0000)
commit34319c5024f9fbb3da768aba3e51dac1a1d276fa
tree5239a3c2e3ed806cd142a302ed7d7fcae934e1c2
parent25efa36b9e805e69207b1763baafa9f3a7ee230a
In m_pulldown() replace memmove() with memcpy().

The memmove() in m_pulldown() copied memory between different mbufs.
So data cannot overlap and memcpy() is enough.

OK claudio@ deraadt@
sys/kern/uipc_mbuf2.c