avoid a null ref

0.9.0-post-fixes
UbitUmarov 2017-08-03 18:09:26 +01:00
parent f658b68181
commit a4e7ab6fcf
1 changed files with 4 additions and 3 deletions

View File

@ -395,9 +395,10 @@ namespace OpenSim.Services.HypergridService
{ {
if(SendAgentGodKillToRegion(UUID.Zero, agentID, guinfo)) if(SendAgentGodKillToRegion(UUID.Zero, agentID, guinfo))
{ {
m_log.InfoFormat( if(account != null)
"[GATEKEEPER SERVICE]: Login failed for {0} {1}, reason: already logged in", m_log.InfoFormat(
account.FirstName, account.LastName); "[GATEKEEPER SERVICE]: Login failed for {0} {1}, reason: already logged in",
account.FirstName, account.LastName);
reason = "You appear to be already logged in on the destination grid " + reason = "You appear to be already logged in on the destination grid " +
"Please wait a a minute or two and retry. " + "Please wait a a minute or two and retry. " +
"If this takes longer than a few minutes please contact the grid owner."; "If this takes longer than a few minutes please contact the grid owner.";