* Fixed issue where incorrect braces nesting resulted in a section of PacketQueue getting disabled.
* This means the recent memory fix should now be working correctly - so the current largest memory leak should be fixed. AssetCache still needs to be addressed however.0.6.1-post-fixes
parent
fb2a1a6b7c
commit
7308f35a96
|
@ -768,7 +768,6 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
|
|
||||||
// If we sent a killpacket
|
// If we sent a killpacket
|
||||||
if (packet is KillPacket)
|
if (packet is KillPacket)
|
||||||
{
|
|
||||||
Abort();
|
Abort();
|
||||||
|
|
||||||
// Actually make the byte array and send it
|
// Actually make the byte array and send it
|
||||||
|
@ -797,7 +796,6 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
|
|
||||||
PacketPool.Instance.ReturnPacket(packet);
|
PacketPool.Instance.ReturnPacket(packet);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
private void Abort()
|
private void Abort()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue