diff options
author | Justin Clarke Casey | 2008-02-06 20:34:18 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-02-06 20:34:18 +0000 |
commit | 548bbc97e5d6e2ffaa3068aa0847eaa6c401345d (patch) | |
tree | 193f5af76e8a680e6d4e566767033e2c6117bd44 /OpenSim/Framework | |
parent | pass 1 on getting colors back to the console (diff) | |
download | opensim-SC_OLD-548bbc97e5d6e2ffaa3068aa0847eaa6c401345d.zip opensim-SC_OLD-548bbc97e5d6e2ffaa3068aa0847eaa6c401345d.tar.gz opensim-SC_OLD-548bbc97e5d6e2ffaa3068aa0847eaa6c401345d.tar.bz2 opensim-SC_OLD-548bbc97e5d6e2ffaa3068aa0847eaa6c401345d.tar.xz |
* Chasing down memory leak where memory used by a client is not returned on client logout
* This code may or may not be on the right track, but I want to save my work so far.
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/ClientManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/ClientManager.cs b/OpenSim/Framework/ClientManager.cs index 8422c17..62ff203 100644 --- a/OpenSim/Framework/ClientManager.cs +++ b/OpenSim/Framework/ClientManager.cs | |||
@@ -68,7 +68,7 @@ namespace OpenSim.Framework | |||
68 | m_clients = new Dictionary<uint, IClientAPI>(); | 68 | m_clients = new Dictionary<uint, IClientAPI>(); |
69 | } | 69 | } |
70 | 70 | ||
71 | private void Remove(uint id) | 71 | public void Remove(uint id) |
72 | { | 72 | { |
73 | m_clients.Remove(id); | 73 | m_clients.Remove(id); |
74 | } | 74 | } |