aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorUbitUmarov2017-05-28 02:11:40 +0100
committerUbitUmarov2017-05-28 02:11:40 +0100
commitd1306c8976c17999337cbe1eba68f2d6dcb24e8c (patch)
tree4324c26a54b7b45477c86f7ab7a2319632c47b17 /OpenSim/Framework
parent make use of a rare thing called StringBuilder on LSL_List. LSL_List uses may... (diff)
downloadopensim-SC_OLD-d1306c8976c17999337cbe1eba68f2d6dcb24e8c.zip
opensim-SC_OLD-d1306c8976c17999337cbe1eba68f2d6dcb24e8c.tar.gz
opensim-SC_OLD-d1306c8976c17999337cbe1eba68f2d6dcb24e8c.tar.bz2
opensim-SC_OLD-d1306c8976c17999337cbe1eba68f2d6dcb24e8c.tar.xz
a null ref check left behind on previus commits
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
index 92be3a3..7f56b6f 100644
--- a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
+++ b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
@@ -2017,7 +2017,8 @@ namespace OpenSim.Framework.Servers.HttpServer
2017 2017
2018 try 2018 try
2019 { 2019 {
2020 PollServiceRequestManager.Stop(); 2020 if(PollServiceRequestManager != null)
2021 PollServiceRequestManager.Stop();
2021 2022
2022 m_httpListener2.ExceptionThrown -= httpServerException; 2023 m_httpListener2.ExceptionThrown -= httpServerException;
2023 //m_httpListener2.DisconnectHandler = null; 2024 //m_httpListener2.DisconnectHandler = null;