Prevent a null ref in llGetLinkPrimiteveParams. Still not a fix for the real
issue.avinationmerge
parent
7d519fde3b
commit
27b0914681
|
@ -8750,7 +8750,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
|||
remaining = GetPrimParams(avatar, rules, ref res);
|
||||
}
|
||||
|
||||
if (remaining != null && remaining.Length > 0)
|
||||
if ((object)remaining != null && remaining.Length > 0)
|
||||
{
|
||||
linknumber = remaining.GetLSLIntegerItem(0);
|
||||
rules = remaining.GetSublist(1, -1);
|
||||
|
|
Loading…
Reference in New Issue