diff options
author | George Marques <george@gmarqu.es> | 2021-05-17 10:59:43 -0300 |
---|---|---|
committer | George Marques <george@gmarqu.es> | 2021-05-17 10:59:43 -0300 |
commit | 10a1f649680971c63b110d33cffd9aa5b1aaf6a9 (patch) | |
tree | 44f3ec513ee2afd022334597722ef3ec3c395b53 /modules/gdscript/gdscript_function.h | |
parent | c3002c09554b4a398cde09be3788dda3bd5e0503 (diff) | |
download | redot-engine-10a1f649680971c63b110d33cffd9aa5b1aaf6a9.tar.gz |
GDScript: Fix crash caused by uninitialized temp stack slots
This adds initialization to every typed temporary stack slot at the
beginning of the function call instead of emitting instructions, since
those might be in a conditional branch and not be called.
Diffstat (limited to 'modules/gdscript/gdscript_function.h')
-rw-r--r-- | modules/gdscript/gdscript_function.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/gdscript/gdscript_function.h b/modules/gdscript/gdscript_function.h index 70b62ced6d..b39ed9cf3a 100644 --- a/modules/gdscript/gdscript_function.h +++ b/modules/gdscript/gdscript_function.h @@ -496,6 +496,8 @@ private: Vector<GDScriptDataType> argument_types; GDScriptDataType return_type; + Map<int, Variant::Type> temporary_slots; + #ifdef TOOLS_ENABLED Vector<StringName> arg_names; Vector<Variant> default_arg_values; |