jenkins likes null httplisteners

melanie
UbitUmarov 2016-12-06 07:40:45 +00:00
parent 8db69d2e02
commit 44588ce45e
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ namespace OpenSim.Framework.Capabilities
m_httpListener = httpListener;
m_httpListenerHostName = httpListenerHostname;
m_httpListenerPort = httpListenerPort;
if (httpListener.UseSSL)
if (httpListener != null && httpListener.UseSSL)
m_useSSL = true;
else
m_useSSL = false;