瀏覽代碼

Fix crash when creating new text file with no name

Phischermen 5 年之前
父節點
當前提交
cdb29447b4
共有 1 個文件被更改,包括 0 次插入1 次删除
  1. 0 1
      editor/plugins/script_editor_plugin.cpp

+ 0 - 1
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;
 			}