Browse Source

Fix use of Error its uninitialised and resolves importers being broken

Gordon MacPherson 4 years ago
parent
commit
8db565cabd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      editor/import/resource_importer_scene.cpp

+ 1 - 1
editor/import/resource_importer_scene.cpp

@@ -1302,7 +1302,7 @@ Node *ResourceImporterScene::pre_import(const String &p_source_file) {
 
 	ERR_FAIL_COND_V(!importer.is_valid(), nullptr);
 
-	Error err;
+	Error err = OK;
 	Node *scene = importer->import_scene(p_source_file, EditorSceneImporter::IMPORT_ANIMATION | EditorSceneImporter::IMPORT_GENERATE_TANGENT_ARRAYS, 15, nullptr, &err);
 	if (!scene || err != OK) {
 		return nullptr;