lock SenseRepeatListLock when added a new sensor during script reconstitution.

This is already being done in the other place where a sensor is added.
Adding a sensor whilst another thread is iterating over the sensor list can cause a concurrency exception.
0.7.3-post-fixes
Justin Clark-Casey (justincc) 2012-03-02 00:22:23 +00:00
parent 71641523a3
commit 58b1c3cec0
1 changed files with 3 additions and 1 deletions

View File

@ -635,7 +635,9 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Plugins
ts.next =
DateTime.Now.ToUniversalTime().AddSeconds(ts.interval);
SenseRepeaters.Add(ts);
lock (SenseRepeatListLock)
SenseRepeaters.Add(ts);
idx += 6;
}
}