From abe26f39f62db1a1e61e87a072fe9c66cc36f4cb Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Thu, 5 Mar 2020 00:00:08 +0000 Subject: [PATCH] yeackk silly bug on new avaterpickeravaterpicker --- OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index 0810071b4c..b70e6b3038 100755 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs @@ -3055,7 +3055,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP { UDPPacketBuffer newbuf = m_udpServer.GetNewUDPBuffer(m_udpClient.RemoteEndPoint); byte[] newdata = newbuf.Data; - Buffer.BlockCopy(data, 0, newdata, pos, 42); + Buffer.BlockCopy(data, 0, newdata, 0, 42); + buf = newbuf; + data = newdata; pos = 43; } count = 0;