CVSROOT: /cvs Module name: src Changes by: [email protected] 2024/08/29 10:42:30
Modified files:
sys/kern : uipc_mbuf2.c
Log message:
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@
