Merge pull request #47718 from lyuma/fbx_empty_crash_3.3
Fix crash on importing empty .fbx file (3.x Backport)
This commit is contained in:
commit
e3c59bf0ff
1 changed files with 3 additions and 0 deletions
|
@ -104,6 +104,9 @@ Node *EditorSceneImporterFBX::import_scene(const String &p_path, uint32_t p_flag
|
|||
|
||||
bool is_binary = false;
|
||||
data.resize(f->get_len());
|
||||
|
||||
ERR_FAIL_COND_V(data.size() < 64, NULL);
|
||||
|
||||
f->get_buffer(data.write().ptr(), data.size());
|
||||
PoolByteArray fbx_header;
|
||||
fbx_header.resize(64);
|
||||
|
|
Loading…
Reference in a new issue