aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDiva Canto2010-08-26 12:26:09 -0700
committerDiva Canto2010-08-26 12:31:34 -0700
commit735124bece6179dd8ba34c324a9291dfa832fa68 (patch)
tree4dca2c509c147e81916055039246e4e7f0dbf7bd
parentTypo (diff)
downloadopensim-SC_OLD-735124bece6179dd8ba34c324a9291dfa832fa68.zip
opensim-SC_OLD-735124bece6179dd8ba34c324a9291dfa832fa68.tar.gz
opensim-SC_OLD-735124bece6179dd8ba34c324a9291dfa832fa68.tar.bz2
opensim-SC_OLD-735124bece6179dd8ba34c324a9291dfa832fa68.tar.xz
Addresses mantis #4984 -- Datasnapshot exceptions.
-rw-r--r--OpenSim/Region/DataSnapshot/ObjectSnapshot.cs15
1 files changed, 12 insertions, 3 deletions
diff --git a/OpenSim/Region/DataSnapshot/ObjectSnapshot.cs b/OpenSim/Region/DataSnapshot/ObjectSnapshot.cs
index 6e69902..c7952e3 100644
--- a/OpenSim/Region/DataSnapshot/ObjectSnapshot.cs
+++ b/OpenSim/Region/DataSnapshot/ObjectSnapshot.cs
@@ -142,9 +142,18 @@ namespace OpenSim.Region.DataSnapshot.Providers
142 node.InnerText = m_scene.RegionInfo.RegionSettings.RegionUUID.ToString(); 142 node.InnerText = m_scene.RegionInfo.RegionSettings.RegionUUID.ToString();
143 xmlobject.AppendChild(node); 143 xmlobject.AppendChild(node);
144 144
145 node = nodeFactory.CreateNode(XmlNodeType.Element, "parceluuid", ""); 145 if (land != null && land.LandData != null)
146 node.InnerText = land.LandData.GlobalID.ToString(); 146 {
147 xmlobject.AppendChild(node); 147 node = nodeFactory.CreateNode(XmlNodeType.Element, "parceluuid", "");
148 node.InnerText = land.LandData.GlobalID.ToString();
149 xmlobject.AppendChild(node);
150 }
151 else
152 {
153 // Something is wrong with this object. Let's not list it.
154 m_log.WarnFormat("[DATASNAPSHOT]: Bad data for object {0} ({1}) in region {2}", obj.Name, obj.UUID, m_scene.RegionInfo.RegionName);
155 continue;
156 }
148 157
149 node = nodeFactory.CreateNode(XmlNodeType.Element, "location", ""); 158 node = nodeFactory.CreateNode(XmlNodeType.Element, "location", "");
150 Vector3 loc = obj.AbsolutePosition; 159 Vector3 loc = obj.AbsolutePosition;