mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-02-06 09:39:49 +00:00
Merge branch 'fix_crash' into 'master'
Fix crash in LuaUtil::ScriptsContainer::~ScriptsContainer() See merge request OpenMW/openmw!1252
This commit is contained in:
commit
5f3a36a9b7
@ -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