Do a proper null check to avoid the overloaded operator == trap
parent
e286a95d76
commit
9995421df1
|
@ -10780,7 +10780,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
|
|
||||||
LSL_List remaining = SetPrimParams(obj, rules);
|
LSL_List remaining = SetPrimParams(obj, rules);
|
||||||
|
|
||||||
while (remaining != null && remaining.Length > 2)
|
while ((object)remaining != null && remaining.Length > 2)
|
||||||
{
|
{
|
||||||
LSL_Integer newLink = remaining.GetLSLIntegerItem(0);
|
LSL_Integer newLink = remaining.GetLSLIntegerItem(0);
|
||||||
LSL_List newrules = remaining.GetSublist(1, -1);
|
LSL_List newrules = remaining.GetSublist(1, -1);
|
||||||
|
|
Loading…
Reference in New Issue