recover a lost null check
parent
6f3e538c79
commit
ae04a24e7a
|
@ -340,7 +340,7 @@ namespace OpenSim.Region.PhysicsModule.ubODEMeshing
|
|||
faces = new List<Face>();
|
||||
OSD meshOsd = null;
|
||||
|
||||
if (primShape.SculptData.Length <= 0)
|
||||
if (primShape.SculptData == null || primShape.SculptData.Length <= 0)
|
||||
{
|
||||
// m_log.InfoFormat("[MESH]: asset data for {0} is zero length", primName);
|
||||
return false;
|
||||
|
@ -363,6 +363,7 @@ namespace OpenSim.Region.PhysicsModule.ubODEMeshing
|
|||
catch (Exception e)
|
||||
{
|
||||
m_log.Error("[MESH]: Exception deserializing mesh asset header:" + e.ToString());
|
||||
return false;
|
||||
}
|
||||
|
||||
start = data.Position;
|
||||
|
|
Loading…
Reference in New Issue