mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 14:16:07 +08:00
Mantis#1573. Thank you kindly, Mikem for a patch to our
LSL subroutine implementation to solve an infinite loop in llParseString2List() under certain circumstances.
This commit is contained in:
@@ -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))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user