diff options
author | Phischermen <kevfischermen@gmail.com> | 2020-06-09 12:59:59 -0700 |
---|---|---|
committer | Phischermen <kevfischermen@gmail.com> | 2020-06-09 12:59:59 -0700 |
commit | cdb29447b4da77bebc7adc944fe10ef7ea580ebf (patch) | |
tree | 2568649c44331a956be69dfceaa19cd0887e3b5d | |
parent | ae21b5ddad844b92d055dd77dca5ce84d56b9719 (diff) |
Fix crash when creating new text file with no name
-rw-r--r-- | editor/plugins/script_editor_plugin.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/editor/plugins/script_editor_plugin.cpp b/editor/plugins/script_editor_plugin.cpp index 8d6dac3907..48a9febcf9 100644 --- a/editor/plugins/script_editor_plugin.cpp +++ b/editor/plugins/script_editor_plugin.cpp @@ -837,7 +837,6 @@ void ScriptEditor::_file_dialog_action(String p_file) { Error err; FileAccess *file = FileAccess::open(p_file, FileAccess::WRITE, &err); if (err) { - memdelete(file); editor->show_warning(TTR("Error writing TextFile:") + "\n" + p_file, TTR("Error!")); break; } |