Protect the scriptmodulecomms interface.
parent
402ff75d78
commit
8b5298a62e
|
@ -876,7 +876,10 @@ namespace OpenSim.Region.ScriptEngine.Shared.CodeTools
|
|||
{
|
||||
string retstr = String.Empty;
|
||||
|
||||
string modinvoke = m_comms.LookupModInvocation(fc.Id);
|
||||
string modinvoke = null;
|
||||
if (m_comms != null)
|
||||
modinvoke = m_comms.LookupModInvocation(fc.Id);
|
||||
|
||||
if (modinvoke != null)
|
||||
{
|
||||
if (fc.kids[0] is ArgumentList)
|
||||
|
|
Loading…
Reference in New Issue