diff options
author | Douglas R. Miles | 2009-10-31 19:24:14 -0800 |
---|---|---|
committer | Diva Canto | 2009-10-31 19:05:02 -0700 |
commit | 7f4d646aeacef5e82a4f8df1494e3752afc3372f (patch) | |
tree | 13d879bcd1dc86590f07ef0598075ef937f8f1bb /OpenSim/Services/Connectors/Authorization | |
parent | Merge branch 'master' of ssh://MyConnection/var/git/opensim (diff) | |
download | opensim-SC_OLD-7f4d646aeacef5e82a4f8df1494e3752afc3372f.zip opensim-SC_OLD-7f4d646aeacef5e82a4f8df1494e3752afc3372f.tar.gz opensim-SC_OLD-7f4d646aeacef5e82a4f8df1494e3752afc3372f.tar.bz2 opensim-SC_OLD-7f4d646aeacef5e82a4f8df1494e3752afc3372f.tar.xz |
http://opensimulator.org/mantis/view.php?id=4337
Diffstat (limited to 'OpenSim/Services/Connectors/Authorization')
-rw-r--r-- | OpenSim/Services/Connectors/Authorization/AuthorizationServiceConnector.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Services/Connectors/Authorization/AuthorizationServiceConnector.cs b/OpenSim/Services/Connectors/Authorization/AuthorizationServiceConnector.cs index 7926efb..2cb80bd 100644 --- a/OpenSim/Services/Connectors/Authorization/AuthorizationServiceConnector.cs +++ b/OpenSim/Services/Connectors/Authorization/AuthorizationServiceConnector.cs | |||
@@ -108,7 +108,11 @@ namespace OpenSim.Services.Connectors | |||
108 | message=""; | 108 | message=""; |
109 | return m_ResponseOnFailure; | 109 | return m_ResponseOnFailure; |
110 | } | 110 | } |
111 | 111 | if (response==null) | |
112 | { | ||
113 | message = "Null Pointer"; | ||
114 | return m_ResponseOnFailure; | ||
115 | } | ||
112 | m_log.DebugFormat("[AUTHORIZATION CONNECTOR] response from remote service was {0}", response.Message); | 116 | m_log.DebugFormat("[AUTHORIZATION CONNECTOR] response from remote service was {0}", response.Message); |
113 | message = response.Message; | 117 | message = response.Message; |
114 | 118 | ||