diff options
author | Diva Canto | 2009-08-10 11:48:30 -0700 |
---|---|---|
committer | Diva Canto | 2009-08-10 11:48:30 -0700 |
commit | 34d0f119cbb28839ba73f834fae99d501d771211 (patch) | |
tree | 66e57d1dfbd4013a1300633a648ca21bedba0300 /OpenSim | |
parent | Et voila! - Old inventory code removed. (diff) | |
download | opensim-SC_OLD-34d0f119cbb28839ba73f834fae99d501d771211.zip opensim-SC_OLD-34d0f119cbb28839ba73f834fae99d501d771211.tar.gz opensim-SC_OLD-34d0f119cbb28839ba73f834fae99d501d771211.tar.bz2 opensim-SC_OLD-34d0f119cbb28839ba73f834fae99d501d771211.tar.xz |
Conditional to prevent a null ref in tests. The tests may still not pass.
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Framework/Communications/UserManagerBase.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Communications/UserManagerBase.cs b/OpenSim/Framework/Communications/UserManagerBase.cs index b9044eb..bd5d0e3 100644 --- a/OpenSim/Framework/Communications/UserManagerBase.cs +++ b/OpenSim/Framework/Communications/UserManagerBase.cs | |||
@@ -698,7 +698,7 @@ namespace OpenSim.Framework.Communications | |||
698 | if (rootfolder != null) | 698 | if (rootfolder != null) |
699 | userProf.RootInventoryFolderID = rootfolder.ID; | 699 | userProf.RootInventoryFolderID = rootfolder.ID; |
700 | } | 700 | } |
701 | else | 701 | else if (m_commsManager.InterServiceInventoryService != null) |
702 | { | 702 | { |
703 | // used by the user server | 703 | // used by the user server |
704 | m_log.Debug("[USERSTORAGE]: using m_commsManager.InterServiceInventoryService to create user's inventory"); | 704 | m_log.Debug("[USERSTORAGE]: using m_commsManager.InterServiceInventoryService to create user's inventory"); |