Mantis#1573. Thank you kindly, Mikem for a patch to our
LSL subroutine implementation to solve an infinite loop in llParseString2List() under certain circumstances.0.6.0-stable
parent
ccc2adb331
commit
d976ee477b
|
@ -3894,7 +3894,7 @@ namespace OpenSim.Region.ScriptEngine.Common
|
|||
{
|
||||
int index = str.IndexOf(delimiters[i].ToString());
|
||||
bool found = index != -1;
|
||||
if (found)
|
||||
if (found && String.Empty != delimiters[i])
|
||||
{
|
||||
if ((cindex > index) || (cindex == -1))
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue