mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 16:22:50 +08:00
Protect the scriptmodulecomms interface.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user