mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-30 03:32:36 +00:00
Fix crash in LuaUtil::ScriptsContainer::~ScriptsContainer()
This commit is contained in:
parent
e24937df3b
commit
24ecdc37a7
@ -328,6 +328,12 @@ namespace LuaUtil
|
|||||||
std::make_heap(mHoursTimersQueue.begin(), mHoursTimersQueue.end());
|
std::make_heap(mHoursTimersQueue.begin(), mHoursTimersQueue.end());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ScriptsContainer::~ScriptsContainer()
|
||||||
|
{
|
||||||
|
for (auto& [_, script] : mScripts)
|
||||||
|
script.mHiddenData[ScriptId::KEY] = sol::nil;
|
||||||
|
}
|
||||||
|
|
||||||
void ScriptsContainer::removeAllScripts()
|
void ScriptsContainer::removeAllScripts()
|
||||||
{
|
{
|
||||||
for (auto& [_, script] : mScripts)
|
for (auto& [_, script] : mScripts)
|
||||||
|
@ -75,7 +75,7 @@ namespace LuaUtil
|
|||||||
ScriptsContainer(LuaUtil::LuaState* lua, std::string_view namePrefix);
|
ScriptsContainer(LuaUtil::LuaState* lua, std::string_view namePrefix);
|
||||||
ScriptsContainer(const ScriptsContainer&) = delete;
|
ScriptsContainer(const ScriptsContainer&) = delete;
|
||||||
ScriptsContainer(ScriptsContainer&&) = delete;
|
ScriptsContainer(ScriptsContainer&&) = delete;
|
||||||
virtual ~ScriptsContainer() { removeAllScripts(); }
|
virtual ~ScriptsContainer();
|
||||||
|
|
||||||
// Adds package that will be available (via `require`) for all scripts in the container.
|
// Adds package that will be available (via `require`) for all scripts in the container.
|
||||||
// Automatically applies LuaUtil::makeReadOnly to the package.
|
// Automatically applies LuaUtil::makeReadOnly to the package.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user