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

This commit is contained in:
Brian McBee
2007-08-29 01:50:59 +00:00
parent 34b836307d
commit f1be283378

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()