Revert "Revert "Fix a possible nullref caused by accessing m_data rather than Data""
Needed after all
This reverts commit 26094c21fe
.
0.8.2-post-fixes
parent
c4ea4ea000
commit
a9beee7050
|
@ -764,10 +764,10 @@ namespace OpenSim.Region.ScriptEngine.Shared
|
||||||
public void Add(object o)
|
public void Add(object o)
|
||||||
{
|
{
|
||||||
object[] tmp;
|
object[] tmp;
|
||||||
tmp = new object[m_data.Length + 1];
|
tmp = new object[Data.Length + 1];
|
||||||
m_data.CopyTo(tmp, 0);
|
Data.CopyTo(tmp, 0);
|
||||||
tmp[m_data.Length] = o;
|
tmp[Data.Length] = o; // Since this is tmp.Length - 1
|
||||||
m_data = tmp;
|
Data = tmp;
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool Contains(object o)
|
public bool Contains(object o)
|
||||||
|
|
Loading…
Reference in New Issue