diff options
author | UbitUmarov | 2016-11-26 05:08:46 +0000 |
---|---|---|
committer | UbitUmarov | 2016-11-26 05:08:46 +0000 |
commit | 5cc0d6620de4dd5c5b532ee284c8f873d0342ecb (patch) | |
tree | 090eb7e6348d5c973beef6ec3d6f4ad7cc83c551 | |
parent | mantis 7656, partialy apply patch, changing the start scripts for now (diff) | |
download | opensim-SC_OLD-5cc0d6620de4dd5c5b532ee284c8f873d0342ecb.zip opensim-SC_OLD-5cc0d6620de4dd5c5b532ee284c8f873d0342ecb.tar.gz opensim-SC_OLD-5cc0d6620de4dd5c5b532ee284c8f873d0342ecb.tar.bz2 opensim-SC_OLD-5cc0d6620de4dd5c5b532ee284c8f873d0342ecb.tar.xz |
remove 2 more null refs i added to release memory
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index 498d5fe..6cdf6f6 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | |||
@@ -615,8 +615,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
615 | ImageManager.Close(); | 615 | ImageManager.Close(); |
616 | ImageManager = null; | 616 | ImageManager = null; |
617 | 617 | ||
618 | m_entityUpdates = null; | 618 | m_entityUpdates = new PriorityQueue(1); |
619 | m_entityProps = null; | 619 | m_entityProps = new PriorityQueue(1); |
620 | m_killRecord.Clear(); | 620 | m_killRecord.Clear(); |
621 | GroupsInView.Clear(); | 621 | GroupsInView.Clear(); |
622 | // m_scene = null; can't do this unless checks are added everywhere due to workitems already in pools | 622 | // m_scene = null; can't do this unless checks are added everywhere due to workitems already in pools |