aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
authorAdam Frisby2008-02-26 10:59:47 +0000
committerAdam Frisby2008-02-26 10:59:47 +0000
commit577cc7358a4eaa75fa2624f5ffc5000c9546bd98 (patch)
tree8a0cdab5b2c255fae6b388f7c61638e19fe926f0 /OpenSim/Region
parent* Converted VoiceChatServer into a shared region module - now only one instan... (diff)
downloadopensim-SC_OLD-577cc7358a4eaa75fa2624f5ffc5000c9546bd98.zip
opensim-SC_OLD-577cc7358a4eaa75fa2624f5ffc5000c9546bd98.tar.gz
opensim-SC_OLD-577cc7358a4eaa75fa2624f5ffc5000c9546bd98.tar.bz2
opensim-SC_OLD-577cc7358a4eaa75fa2624f5ffc5000c9546bd98.tar.xz
* Fixed a null assignment in voice server.
Diffstat (limited to 'OpenSim/Region')
-rw-r--r--OpenSim/Region/Environment/Modules/VoiceChat/VoiceChatServer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Modules/VoiceChat/VoiceChatServer.cs b/OpenSim/Region/Environment/Modules/VoiceChat/VoiceChatServer.cs
index 32aa96e..de7af3f 100644
--- a/OpenSim/Region/Environment/Modules/VoiceChat/VoiceChatServer.cs
+++ b/OpenSim/Region/Environment/Modules/VoiceChat/VoiceChatServer.cs
@@ -21,7 +21,7 @@ namespace OpenSim.Region.Environment.Modules.VoiceChat
21 21
22 Thread m_listenerThread; 22 Thread m_listenerThread;
23 Thread m_mainThread; 23 Thread m_mainThread;
24 List<Scene> m_scenes; 24 List<Scene> m_scenes = new List<Scene>();
25 Socket m_server; 25 Socket m_server;
26 Socket m_selectCancel; 26 Socket m_selectCancel;
27 bool m_enabled = false; 27 bool m_enabled = false;