* From: Alan M Webb <awebb.vnet.ibm.com>

* Patch to fix negative indices bug in llListInsertList
This commit is contained in:
Justin Clarke Casey
2008-04-24 10:17:33 +00:00
parent 12bba3da4b
commit c49b25f19e

View File

@@ -3280,7 +3280,7 @@ namespace OpenSim.Region.ScriptEngine.Common
if(index < 0)
{
index = index+src.Length;
index = index+dest.Length;
if(index < 0)
{
index = 0;