* Thanks cmickeyb, for a patch that corrects an invalid construction of Primitive.TextureEntry (a "blank" texture should be initialized with UUID.Zero, not null)
parent
6d05ea2a75
commit
59ac792e44
|
@ -236,7 +236,7 @@ namespace OpenSim.Framework
|
|||
catch { }
|
||||
|
||||
m_log.Warn("[SHAPE]: Failed to decode texture, length=" + ((m_textureEntry != null) ? m_textureEntry.Length : 0));
|
||||
return new Primitive.TextureEntry(null);
|
||||
return new Primitive.TextureEntry(UUID.Zero);
|
||||
}
|
||||
|
||||
set { m_textureEntry = value.GetBytes(); }
|
||||
|
|
Loading…
Reference in New Issue