diff options
author | Melanie Thielker | 2008-10-06 04:20:27 +0000 |
---|---|---|
committer | Melanie Thielker | 2008-10-06 04:20:27 +0000 |
commit | b55c9761b46cf21688ff912877d0b1e959896204 (patch) | |
tree | 7a9dbad57283a7510135c70376c6932fd3cf1a98 /OpenSim/Region/Environment | |
parent | One should not commit even the smallest fox without compile. Fix build break (diff) | |
download | opensim-SC_OLD-b55c9761b46cf21688ff912877d0b1e959896204.zip opensim-SC_OLD-b55c9761b46cf21688ff912877d0b1e959896204.tar.gz opensim-SC_OLD-b55c9761b46cf21688ff912877d0b1e959896204.tar.bz2 opensim-SC_OLD-b55c9761b46cf21688ff912877d0b1e959896204.tar.xz |
Fix a nullref
Diffstat (limited to 'OpenSim/Region/Environment')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs index 63c97eb..1204cd4 100644 --- a/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs +++ b/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs | |||
@@ -1202,7 +1202,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
1202 | /// <param name="part"></param> | 1202 | /// <param name="part"></param> |
1203 | internal void SendPartFullUpdate(IClientAPI remoteClient, SceneObjectPart part, uint clientFlags) | 1203 | internal void SendPartFullUpdate(IClientAPI remoteClient, SceneObjectPart part, uint clientFlags) |
1204 | { | 1204 | { |
1205 | if (m_rootPart.UUID == part.UUID) | 1205 | if (m_rootPart != null && m_rootPart.UUID == part.UUID) |
1206 | { | 1206 | { |
1207 | if (m_rootPart.IsAttachment) | 1207 | if (m_rootPart.IsAttachment) |
1208 | { | 1208 | { |