From e9411a4c59113cfb41a6f73b0978652229690424 Mon Sep 17 00:00:00 2001 From: Teravus Ovares Date: Sat, 27 Dec 2008 21:50:19 +0000 Subject: * Eliminate a possible null reference from the LLSDLogin method. --- OpenSim/Framework/Communications/LoginService.cs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'OpenSim/Framework/Communications') diff --git a/OpenSim/Framework/Communications/LoginService.cs b/OpenSim/Framework/Communications/LoginService.cs index 24e9ca9..3f53c2f 100644 --- a/OpenSim/Framework/Communications/LoginService.cs +++ b/OpenSim/Framework/Communications/LoginService.cs @@ -379,7 +379,11 @@ namespace OpenSim.Framework.Communications return logResponse.CreateLoginFailedResponseLLSD(); } } + else + return logResponse.CreateLoginFailedResponseLLSD(); } + else + return logResponse.CreateLoginFailedResponseLLSD(); if (userProfile.GodLevel < m_minLoginLevel) -- cgit v1.1