Skip to content

Commit

Permalink
Check for _language in PluginScript.instance_has
Browse files Browse the repository at this point in the history
  • Loading branch information
pfertyk committed May 30, 2021
1 parent da12086 commit 4b25892
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions modules/gdnative/pluginscript/pluginscript_script.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,8 @@ ScriptInstance *PluginScript::instance_create(Object *p_this) {
}

bool PluginScript::instance_has(const Object *p_this) const {
ERR_FAIL_COND_V(!_language, false);

_language->lock();
bool hasit = _instances.has((Object *)p_this);
_language->unlock();
Expand Down

0 comments on commit 4b25892

Please sign in to comment.