diff options
author | Diva Canto | 2011-10-16 16:13:24 -0700 |
---|---|---|
committer | Diva Canto | 2011-10-16 16:13:24 -0700 |
commit | 730460169f2a45e934b42b2464f7c7472f7fac48 (patch) | |
tree | eea34973e9081506eadbd26eab6c1a3368fdb9e6 /OpenSim/Services/UserAccountService | |
parent | Guard HGAssetService against uninitialized variables and null arguments. (diff) | |
download | opensim-SC_OLD-730460169f2a45e934b42b2464f7c7472f7fac48.zip opensim-SC_OLD-730460169f2a45e934b42b2464f7c7472f7fac48.tar.gz opensim-SC_OLD-730460169f2a45e934b42b2464f7c7472f7fac48.tar.bz2 opensim-SC_OLD-730460169f2a45e934b42b2464f7c7472f7fac48.tar.xz |
Bug fix on the bug fix on UserAccountService.cs
Diffstat (limited to 'OpenSim/Services/UserAccountService')
-rw-r--r-- | OpenSim/Services/UserAccountService/UserAccountService.cs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/OpenSim/Services/UserAccountService/UserAccountService.cs b/OpenSim/Services/UserAccountService/UserAccountService.cs index e234c0a..9425816 100644 --- a/OpenSim/Services/UserAccountService/UserAccountService.cs +++ b/OpenSim/Services/UserAccountService/UserAccountService.cs | |||
@@ -62,7 +62,6 @@ namespace OpenSim.Services.UserAccountService | |||
62 | if (userConfig == null) | 62 | if (userConfig == null) |
63 | throw new Exception("No UserAccountService configuration"); | 63 | throw new Exception("No UserAccountService configuration"); |
64 | 64 | ||
65 | m_RootInstance = this; | ||
66 | string gridServiceDll = userConfig.GetString("GridService", string.Empty); | 65 | string gridServiceDll = userConfig.GetString("GridService", string.Empty); |
67 | if (gridServiceDll != string.Empty) | 66 | if (gridServiceDll != string.Empty) |
68 | m_GridService = LoadPlugin<IGridService>(gridServiceDll, new Object[] { config }); | 67 | m_GridService = LoadPlugin<IGridService>(gridServiceDll, new Object[] { config }); |