Attempt to fix bug on linux where estate_settings.xml gets wiped.

afrisby
Brian McBee 2007-08-29 01:50:59 +00:00
parent 34b836307d
commit f1be283378
1 changed files with 4 additions and 1 deletions

View File

@ -125,7 +125,10 @@ namespace OpenSim.Framework.Configuration
Directory.CreateDirectory(Util.configDir());
}
doc.Save(fileName);
lock(this)
{
doc.Save(fileName);
}
}
public void Close()