mirror of
https://github.com/opensim/opensim.git
synced 2026-08-10 19:36:07 +08:00
a few more changes on universal id
This commit is contained in:
@@ -3717,7 +3717,7 @@ namespace OpenSim.Framework
|
||||
|
||||
int* seps = stackalloc int[3];
|
||||
int nseps = 0;
|
||||
for (int i = 37; i < value.Length && nseps < 3; ++i)
|
||||
for (int i = 36; i < value.Length && nseps < 3; ++i)
|
||||
{
|
||||
if (value[i] == ';')
|
||||
seps[nseps++] = i;
|
||||
@@ -3792,7 +3792,7 @@ namespace OpenSim.Framework
|
||||
|
||||
int* seps = stackalloc int[3];
|
||||
int nseps = 0;
|
||||
for (int i = 37; i < value.Length && nseps < 3; ++i)
|
||||
for (int i = 36; i < value.Length && nseps < 3; ++i)
|
||||
{
|
||||
if (value[i] == ';')
|
||||
seps[nseps++] = i;
|
||||
@@ -3873,7 +3873,7 @@ namespace OpenSim.Framework
|
||||
|
||||
int* seps = stackalloc int[3];
|
||||
int nseps = 0;
|
||||
for (int i = 37; i < value.Length && nseps < 3; ++i)
|
||||
for (int i = 36; i < value.Length && nseps < 3; ++i)
|
||||
{
|
||||
if (value[i] == ';')
|
||||
seps[nseps++] = i;
|
||||
|
||||
Reference in New Issue
Block a user