diff options
author | UbitUmarov | 2016-07-30 20:56:19 +0100 |
---|---|---|
committer | UbitUmarov | 2016-07-30 20:56:19 +0100 |
commit | 9a4afa753ba4887743bdd4053c336258e7a3fd80 (patch) | |
tree | fdd2f97ef77c460f4ca4dc2cb1970afe27d6cfac /OpenSim/Region/Framework | |
parent | change RegionInfoCache expires control (diff) | |
download | opensim-SC_OLD-9a4afa753ba4887743bdd4053c336258e7a3fd80.zip opensim-SC_OLD-9a4afa753ba4887743bdd4053c336258e7a3fd80.tar.gz opensim-SC_OLD-9a4afa753ba4887743bdd4053c336258e7a3fd80.tar.bz2 opensim-SC_OLD-9a4afa753ba4887743bdd4053c336258e7a3fd80.tar.xz |
fix NULL references added in recente changes in standalone mode
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/ScenePresence.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs index c592385..e985903 100644 --- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs | |||
@@ -4671,9 +4671,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
4671 | ControllingClient.ActiveGroupName = cAgent.ActiveGroupName; | 4671 | ControllingClient.ActiveGroupName = cAgent.ActiveGroupName; |
4672 | ControllingClient.ActiveGroupPowers = 0; | 4672 | ControllingClient.ActiveGroupPowers = 0; |
4673 | Grouptitle = cAgent.ActiveGroupTitle; | 4673 | Grouptitle = cAgent.ActiveGroupTitle; |
4674 | int ngroups = cAgent.Groups.Length; | 4674 | |
4675 | if(ngroups > 0) | 4675 | if(cAgent.Groups != null && cAgent.Groups.Length > 0) |
4676 | { | 4676 | { |
4677 | int ngroups = cAgent.Groups.Length; | ||
4677 | Dictionary<UUID, ulong> gpowers = new Dictionary<UUID, ulong>(ngroups); | 4678 | Dictionary<UUID, ulong> gpowers = new Dictionary<UUID, ulong>(ngroups); |
4678 | for(int i = 0 ; i < ngroups; i++) | 4679 | for(int i = 0 ; i < ngroups; i++) |
4679 | { | 4680 | { |