Skip empty strings in ParseString* functions

This commit is contained in:
Melanie
2010-10-21 07:19:10 +01:00
committed by Jonathan Freedman
parent 9038218c2d
commit 6049e548a5

View File

@@ -8404,6 +8404,9 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
for (j = 0; j < seplen; j++)
{
if (separray[j].ToString() == String.Empty)
active[j] = false;
if (active[j])
{
// scan all of the markers
@@ -8432,6 +8435,9 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
{
for (j = seplen; (j < mlen) && (offset[best] > beginning); j++)
{
if (spcarray[j].ToString() == String.Empty)
active[j] = false;
if (active[j])
{
// scan all of the markers