From 13075779328485b5ead6d9c5a317b894f193a9ae Mon Sep 17 00:00:00 2001 From: SaracenOne Date: Wed, 27 Jul 2022 23:37:42 +0100 Subject: Prevent hard crash in GDScriptVM when a named global can not be found. --- modules/gdscript/gdscript_vm.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'modules/gdscript') diff --git a/modules/gdscript/gdscript_vm.cpp b/modules/gdscript/gdscript_vm.cpp index e0beed367a..ce422dd30c 100644 --- a/modules/gdscript/gdscript_vm.cpp +++ b/modules/gdscript/gdscript_vm.cpp @@ -3280,6 +3280,7 @@ Variant GDScriptFunction::call(GDScriptInstance *p_instance, const Variant **p_a int globalname_idx = _code_ptr[ip + 2]; GD_ERR_BREAK(globalname_idx < 0 || globalname_idx >= _global_names_count); const StringName *globalname = &_global_names_ptr[globalname_idx]; + GD_ERR_BREAK(!GDScriptLanguage::get_singleton()->get_named_globals_map().has(*globalname)); GET_INSTRUCTION_ARG(dst, 0); *dst = GDScriptLanguage::get_singleton()->get_named_globals_map()[*globalname]; -- cgit v1.2.3