diff options
author | Pixel Tomsen | 2011-10-06 21:04:20 +0200 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-10-08 02:13:18 +0100 |
commit | a6c5e00c45b3d64b4e912a65c8ed7f31eb643759 (patch) | |
tree | b79694c78be112c3c58ae1e27ddb3573253ae741 /OpenSim/Services/GridService | |
parent | Remove the inconsistently applied now pointless FailIfRemoteAdminDisabled() c... (diff) | |
download | opensim-SC_OLD-a6c5e00c45b3d64b4e912a65c8ed7f31eb643759.zip opensim-SC_OLD-a6c5e00c45b3d64b4e912a65c8ed7f31eb643759.tar.gz opensim-SC_OLD-a6c5e00c45b3d64b4e912a65c8ed7f31eb643759.tar.bz2 opensim-SC_OLD-a6c5e00c45b3d64b4e912a65c8ed7f31eb643759.tar.xz |
GridService - Region UUID can not be NULL
http://opensimulator.org/mantis/view.php?id=3426
Diffstat (limited to 'OpenSim/Services/GridService')
-rw-r--r-- | OpenSim/Services/GridService/GridService.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Services/GridService/GridService.cs b/OpenSim/Services/GridService/GridService.cs index 0a4372a..0aeae67 100644 --- a/OpenSim/Services/GridService/GridService.cs +++ b/OpenSim/Services/GridService/GridService.cs | |||
@@ -107,6 +107,8 @@ namespace OpenSim.Services.GridService | |||
107 | public string RegisterRegion(UUID scopeID, GridRegion regionInfos) | 107 | public string RegisterRegion(UUID scopeID, GridRegion regionInfos) |
108 | { | 108 | { |
109 | IConfig gridConfig = m_config.Configs["GridService"]; | 109 | IConfig gridConfig = m_config.Configs["GridService"]; |
110 | // First Check for invalidate NULL-UUID, if true fast quit | ||
111 | if (regionInfos.RegionID == UUID.Zero) return "Invalidate RegionID - can not be UUID-NULL"; | ||
110 | // This needs better sanity testing. What if regionInfo is registering in | 112 | // This needs better sanity testing. What if regionInfo is registering in |
111 | // overlapping coords? | 113 | // overlapping coords? |
112 | RegionData region = m_Database.Get(regionInfos.RegionLocX, regionInfos.RegionLocY, scopeID); | 114 | RegionData region = m_Database.Get(regionInfos.RegionLocX, regionInfos.RegionLocY, scopeID); |