0.9.1.0-post-fixes
UbitUmarov 2019-03-18 22:26:02 +00:00
parent 37619443a7
commit f17dba9925
1 changed files with 4 additions and 2 deletions

View File

@ -1132,8 +1132,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP
UDPPacketBuffer newbuf = m_udpServer.GetNewUDPBuffer(m_udpClient.RemoteEndPoint);
Buffer.BlockCopy(data, 0, newbuf.Data, 0, countpos);
pos = countpos + 1;
buf = newbuf;
data = buf.Data;
pos = countpos + 1;
count = 1;
}
else
@ -1204,8 +1205,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP
UDPPacketBuffer newbuf = m_udpServer.GetNewUDPBuffer(m_udpClient.RemoteEndPoint);
Buffer.BlockCopy(data, 0, newbuf.Data, 0, countpos);
pos = countpos + 1;
buf = newbuf;
data = buf.Data;
pos = countpos + 1;
count = 1;
}
else