mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-06 21:33:54 +02:00
Merge pull request #1037 from overte-org/fix/bad_weak_ptr
Fix unhandled std::bad_weak_ptr
This commit is contained in:
commit
fa514bc52d
1 changed files with 1 additions and 1 deletions
|
@ -2054,7 +2054,7 @@ void ScriptManager::loadEntityScript(const EntityItemID& entityID, const QString
|
|||
std::weak_ptr<ScriptManager> weakRef(shared_from_this());
|
||||
scriptCache->getScriptContents(entityScript,
|
||||
[this, weakRef, entityScript, entityID](const QString& url, const QString& contents, bool isURL, bool success, const QString& status) {
|
||||
std::shared_ptr<ScriptManager> strongRef(weakRef);
|
||||
std::shared_ptr<ScriptManager> strongRef = weakRef.lock();
|
||||
if (!strongRef) {
|
||||
qCWarning(scriptengine) << "loadEntityScript.contentAvailable -- ScriptManager was deleted during getScriptContents!!";
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue