diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2018-05-01 19:14:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-01 19:14:07 +0200 |
commit | de97339a2d66cc9e3bd9ab77dd4e0c5c6534a869 (patch) | |
tree | 90a5f1949ce557c33e5f97147d4021c96500dadd /modules/gdscript/gdscript_editor.cpp | |
parent | c9abe88110abdc51bf520cd9af95e59374f7c0cc (diff) | |
parent | bf7ca623a65f25cc4ac7a3ca0d6635331ec07c25 (diff) | |
download | redot-engine-de97339a2d66cc9e3bd9ab77dd4e0c5c6534a869.tar.gz |
Merge pull request #18291 from akien-mga/coverity-uninitialized-scalar-var
Fix Coverity reports of uninitialized scalar variable
Diffstat (limited to 'modules/gdscript/gdscript_editor.cpp')
-rw-r--r-- | modules/gdscript/gdscript_editor.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/gdscript/gdscript_editor.cpp b/modules/gdscript/gdscript_editor.cpp index 0d52f0a995..a11ee709e6 100644 --- a/modules/gdscript/gdscript_editor.cpp +++ b/modules/gdscript/gdscript_editor.cpp @@ -430,6 +430,9 @@ struct GDScriptCompletionIdentifier { Ref<GDScript> script; Variant::Type type; Variant value; //im case there is a value, also return it + + GDScriptCompletionIdentifier() : + type(Variant::NIL) {} }; static GDScriptCompletionIdentifier _get_type_from_variant(const Variant &p_variant, bool p_allow_gdnative_class = false) { @@ -551,9 +554,7 @@ static Ref<Reference> _get_parent_class(GDScriptCompletionContext &context) { static GDScriptCompletionIdentifier _get_native_class(GDScriptCompletionContext &context) { - //eeh... GDScriptCompletionIdentifier id; - id.type = Variant::NIL; REF pc = _get_parent_class(context); if (!pc.is_valid()) { |