aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
index a69b670..55050d9 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
@@ -621,7 +621,11 @@ namespace OpenSim.Region.ClientStack.LindenUDP
621 GroupsInView.Clear(); 621 GroupsInView.Clear();
622 622
623 if(m_scene.GetNumberOfClients() == 0) 623 if(m_scene.GetNumberOfClients() == 0)
624 GC.Collect(); 624 {
625 GC.Collect();
626 GC.WaitForPendingFinalizers();
627 GC.Collect();
628 }
625 } 629 }
626 630
627 public void Kick(string message) 631 public void Kick(string message)