mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 06:06:06 +08:00
Check for empty string as well, just as illegal.
This commit is contained in:
@@ -121,7 +121,7 @@ namespace OpenSim.Framework.Configuration.XML
|
||||
|
||||
public void Commit()
|
||||
{
|
||||
if (fileName == null)
|
||||
if (fileName == null || fileName == String.Empty)
|
||||
return;
|
||||
|
||||
if (!Directory.Exists(Util.configDir()))
|
||||
|
||||
Reference in New Issue
Block a user