diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-08-18 23:18:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-18 23:18:40 +0200 |
commit | e2fb55471c0bdd4f25ed6448e5e8eff99882afa8 (patch) | |
tree | 74976c55f9165fddb01ae52b587e3578f52a54d7 /modules/gdscript/gdscript_cache.cpp | |
parent | 65730ab9f6fbae34bb161113161b43f8b3fcd4d2 (diff) | |
parent | 35176247af80626684ff6bb1a1eb3bc031857b1c (diff) |
Merge pull request #41359 from vnen/gdscript-2-fixes
Assorted fixes for GDScript bugs
Diffstat (limited to 'modules/gdscript/gdscript_cache.cpp')
-rw-r--r-- | modules/gdscript/gdscript_cache.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/modules/gdscript/gdscript_cache.cpp b/modules/gdscript/gdscript_cache.cpp index 583283ff46..cdb14d6281 100644 --- a/modules/gdscript/gdscript_cache.cpp +++ b/modules/gdscript/gdscript_cache.cpp @@ -85,6 +85,17 @@ Error GDScriptParserRef::raise_status(Status p_new_status) { return result; } } + if (result != OK) { + if (parser != nullptr) { + memdelete(parser); + parser = nullptr; + } + if (analyzer != nullptr) { + memdelete(analyzer); + analyzer = nullptr; + } + return result; + } } return result; @@ -118,6 +129,10 @@ Ref<GDScriptParserRef> GDScriptCache::get_parser(const String &p_path, GDScriptP if (singleton->parser_map.has(p_path)) { ref = singleton->parser_map[p_path]; } else { + if (!FileAccess::exists(p_path)) { + r_error = ERR_FILE_NOT_FOUND; + return ref; + } GDScriptParser *parser = memnew(GDScriptParser); ref.instance(); ref->parser = parser; |