diff options
author | qarmin <mikrutrafal54@gmail.com> | 2020-03-02 19:17:20 +0100 |
---|---|---|
committer | qarmin <mikrutrafal54@gmail.com> | 2020-03-02 19:17:20 +0100 |
commit | 1f209bfc41ef5f2cd63c961262d5d6fe3e03b55a (patch) | |
tree | d754f5b7fad41653651ee820969ca484914c5fa3 /core/io/resource_format_binary.cpp | |
parent | 0c22f5a4476d80b43017b2032f60039ce75e49a9 (diff) | |
download | redot-engine-1f209bfc41ef5f2cd63c961262d5d6fe3e03b55a.tar.gz |
Fixes bugs found by Sonarcloud and Coverity
Diffstat (limited to 'core/io/resource_format_binary.cpp')
-rw-r--r-- | core/io/resource_format_binary.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/io/resource_format_binary.cpp b/core/io/resource_format_binary.cpp index 54b75cc29d..efd452191a 100644 --- a/core/io/resource_format_binary.cpp +++ b/core/io/resource_format_binary.cpp @@ -1008,7 +1008,9 @@ String ResourceLoaderBinary::recognize(FileAccess *p_f) { ResourceLoaderBinary::ResourceLoaderBinary() : translation_remapped(false), + ver_format(0), f(NULL), + importmd_ofs(0), error(OK) { progress = nullptr; |