aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Server/Handlers/UserAccounts
diff options
context:
space:
mode:
authorUbitUmarov2016-08-18 14:35:28 +0100
committerUbitUmarov2016-08-18 14:35:28 +0100
commit9c75f8a57e205cc33b0cbf97745ab7ead46da399 (patch)
tree584891db1713c219b943694ad94be1b1855e2f04 /OpenSim/Server/Handlers/UserAccounts
parent allow cap HomeLocation to be disabled setting Cap_HomeLocation = "" (diff)
downloadopensim-SC_OLD-9c75f8a57e205cc33b0cbf97745ab7ead46da399.zip
opensim-SC_OLD-9c75f8a57e205cc33b0cbf97745ab7ead46da399.tar.gz
opensim-SC_OLD-9c75f8a57e205cc33b0cbf97745ab7ead46da399.tar.bz2
opensim-SC_OLD-9c75f8a57e205cc33b0cbf97745ab7ead46da399.tar.xz
avoid NULL refs
Diffstat (limited to 'OpenSim/Server/Handlers/UserAccounts')
-rw-r--r--OpenSim/Server/Handlers/UserAccounts/UserAccountServerPostHandler.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Server/Handlers/UserAccounts/UserAccountServerPostHandler.cs b/OpenSim/Server/Handlers/UserAccounts/UserAccountServerPostHandler.cs
index 9efe741..237ffc7 100644
--- a/OpenSim/Server/Handlers/UserAccounts/UserAccountServerPostHandler.cs
+++ b/OpenSim/Server/Handlers/UserAccounts/UserAccountServerPostHandler.cs
@@ -235,6 +235,8 @@ namespace OpenSim.Server.Handlers.UserAccounts
235 int i = 0; 235 int i = 0;
236 foreach (UserAccount acc in accounts) 236 foreach (UserAccount acc in accounts)
237 { 237 {
238 if(acc == null)
239 continue;
238 Dictionary<string, object> rinfoDict = acc.ToKeyValuePairs(); 240 Dictionary<string, object> rinfoDict = acc.ToKeyValuePairs();
239 result["account" + i] = rinfoDict; 241 result["account" + i] = rinfoDict;
240 i++; 242 i++;