Преглед на файлове

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;
 			Error err;
 			FileAccess *file = FileAccess::open(p_file, FileAccess::WRITE, &err);
 			FileAccess *file = FileAccess::open(p_file, FileAccess::WRITE, &err);
 			if (err) {
 			if (err) {
-				memdelete(file);
 				editor->show_warning(TTR("Error writing TextFile:") + "\n" + p_file, TTR("Error!"));
 				editor->show_warning(TTR("Error writing TextFile:") + "\n" + p_file, TTR("Error!"));
 				break;
 				break;
 			}
 			}