mirror of
https://github.com/godotengine/godot.git
synced 2025-01-18 20:40:57 +08:00
Merge pull request #47717 from lyuma/fbx_empty_crash
Fix crash on importing empty .fbx file
This commit is contained in:
commit
fe6f226d26
@ -104,6 +104,9 @@ Node3D *EditorSceneImporterFBX::import_scene(const String &p_path, uint32_t p_fl
|
||||
|
||||
bool is_binary = false;
|
||||
data.resize(f->get_len());
|
||||
|
||||
ERR_FAIL_COND_V(data.size() < 64, NULL);
|
||||
|
||||
f->get_buffer(data.ptrw(), data.size());
|
||||
PackedByteArray fbx_header;
|
||||
fbx_header.resize(64);
|
||||
|
Loading…
Reference in New Issue
Block a user