mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-04-05 20:07:13 +02:00
Prevent common null objects from using dead virtual machines after reloads.
This commit is contained in:
parent
1007eac3ed
commit
dde8890941
@ -69,6 +69,11 @@ void OnSquirrelLoad()
|
|||||||
}
|
}
|
||||||
// Set this as the default database
|
// Set this as the default database
|
||||||
DefaultVM::Set(_SqVM);
|
DefaultVM::Set(_SqVM);
|
||||||
|
// Prevent common null objects from using dead virtual machines
|
||||||
|
NullArray() = Array();
|
||||||
|
NullTable() = Table();
|
||||||
|
NullObject() = Object();
|
||||||
|
NullFunction() = Function();
|
||||||
// Register the module API
|
// Register the module API
|
||||||
RegisterAPI(_SqVM);
|
RegisterAPI(_SqVM);
|
||||||
// Notify about the current status
|
// Notify about the current status
|
||||||
|
@ -63,6 +63,11 @@ void OnSquirrelLoad()
|
|||||||
}
|
}
|
||||||
// Set this as the default database
|
// Set this as the default database
|
||||||
DefaultVM::Set(_SqVM);
|
DefaultVM::Set(_SqVM);
|
||||||
|
// Prevent common null objects from using dead virtual machines
|
||||||
|
NullArray() = Array();
|
||||||
|
NullTable() = Table();
|
||||||
|
NullObject() = Object();
|
||||||
|
NullFunction() = Function();
|
||||||
// Register the module API
|
// Register the module API
|
||||||
RegisterAPI(_SqVM);
|
RegisterAPI(_SqVM);
|
||||||
// Notify about the current status
|
// Notify about the current status
|
||||||
|
@ -65,6 +65,11 @@ void OnSquirrelLoad()
|
|||||||
}
|
}
|
||||||
// Set this as the default database
|
// Set this as the default database
|
||||||
DefaultVM::Set(_SqVM);
|
DefaultVM::Set(_SqVM);
|
||||||
|
// Prevent common null objects from using dead virtual machines
|
||||||
|
NullArray() = Array();
|
||||||
|
NullTable() = Table();
|
||||||
|
NullObject() = Object();
|
||||||
|
NullFunction() = Function();
|
||||||
// Register the module API
|
// Register the module API
|
||||||
RegisterAPI(_SqVM);
|
RegisterAPI(_SqVM);
|
||||||
// Notify about the current status
|
// Notify about the current status
|
||||||
|
@ -63,6 +63,11 @@ void OnSquirrelLoad()
|
|||||||
}
|
}
|
||||||
// Set this as the default database
|
// Set this as the default database
|
||||||
DefaultVM::Set(_SqVM);
|
DefaultVM::Set(_SqVM);
|
||||||
|
// Prevent common null objects from using dead virtual machines
|
||||||
|
NullArray() = Array();
|
||||||
|
NullTable() = Table();
|
||||||
|
NullObject() = Object();
|
||||||
|
NullFunction() = Function();
|
||||||
// Register the module API
|
// Register the module API
|
||||||
RegisterAPI(_SqVM);
|
RegisterAPI(_SqVM);
|
||||||
// Notify about the current status
|
// Notify about the current status
|
||||||
|
@ -63,6 +63,11 @@ void OnSquirrelLoad()
|
|||||||
}
|
}
|
||||||
// Set this as the default database
|
// Set this as the default database
|
||||||
DefaultVM::Set(_SqVM);
|
DefaultVM::Set(_SqVM);
|
||||||
|
// Prevent common null objects from using dead virtual machines
|
||||||
|
NullArray() = Array();
|
||||||
|
NullTable() = Table();
|
||||||
|
NullObject() = Object();
|
||||||
|
NullFunction() = Function();
|
||||||
// Register the module API
|
// Register the module API
|
||||||
RegisterAPI(_SqVM);
|
RegisterAPI(_SqVM);
|
||||||
// Notify about the current status
|
// Notify about the current status
|
||||||
|
@ -63,6 +63,11 @@ void OnSquirrelLoad()
|
|||||||
}
|
}
|
||||||
// Set this as the default database
|
// Set this as the default database
|
||||||
DefaultVM::Set(_SqVM);
|
DefaultVM::Set(_SqVM);
|
||||||
|
// Prevent common null objects from using dead virtual machines
|
||||||
|
NullArray() = Array();
|
||||||
|
NullTable() = Table();
|
||||||
|
NullObject() = Object();
|
||||||
|
NullFunction() = Function();
|
||||||
// Register the module API
|
// Register the module API
|
||||||
RegisterAPI(_SqVM);
|
RegisterAPI(_SqVM);
|
||||||
// Notify about the current status
|
// Notify about the current status
|
||||||
|
@ -63,6 +63,11 @@ void OnSquirrelLoad()
|
|||||||
}
|
}
|
||||||
// Set this as the default database
|
// Set this as the default database
|
||||||
DefaultVM::Set(_SqVM);
|
DefaultVM::Set(_SqVM);
|
||||||
|
// Prevent common null objects from using dead virtual machines
|
||||||
|
NullArray() = Array();
|
||||||
|
NullTable() = Table();
|
||||||
|
NullObject() = Object();
|
||||||
|
NullFunction() = Function();
|
||||||
// Register the module API
|
// Register the module API
|
||||||
RegisterAPI(_SqVM);
|
RegisterAPI(_SqVM);
|
||||||
// Notify about the current status
|
// Notify about the current status
|
||||||
|
@ -68,6 +68,11 @@ void OnSquirrelLoad()
|
|||||||
}
|
}
|
||||||
// Set this as the default database
|
// Set this as the default database
|
||||||
DefaultVM::Set(_SqVM);
|
DefaultVM::Set(_SqVM);
|
||||||
|
// Prevent common null objects from using dead virtual machines
|
||||||
|
NullArray() = Array();
|
||||||
|
NullTable() = Table();
|
||||||
|
NullObject() = Object();
|
||||||
|
NullFunction() = Function();
|
||||||
// Register the module API
|
// Register the module API
|
||||||
RegisterAPI(_SqVM);
|
RegisterAPI(_SqVM);
|
||||||
// Notify about the current status
|
// Notify about the current status
|
||||||
|
@ -214,6 +214,12 @@ bool Core::Initialize()
|
|||||||
// See if debugging options should be enabled
|
// See if debugging options should be enabled
|
||||||
m_Debugging = conf.GetBoolValue("Squirrel", "Debugging", false);
|
m_Debugging = conf.GetBoolValue("Squirrel", "Debugging", false);
|
||||||
|
|
||||||
|
// Prevent common null objects from using dead virtual machines
|
||||||
|
NullArray() = Array();
|
||||||
|
NullTable() = Table();
|
||||||
|
NullObject() = Object();
|
||||||
|
NullFunction() = Function();
|
||||||
|
|
||||||
LogDbg("Registering the standard libraries");
|
LogDbg("Registering the standard libraries");
|
||||||
// Push the root table on the stack
|
// Push the root table on the stack
|
||||||
sq_pushroottable(m_VM);
|
sq_pushroottable(m_VM);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user