diff options
author | Lyuma <xn.lyuma@gmail.com> | 2021-04-08 02:03:52 -0700 |
---|---|---|
committer | Lyuma <xn.lyuma@gmail.com> | 2021-04-08 02:50:01 -0700 |
commit | 7d8e981262d823602da17d0c0c5076c9934a7e5e (patch) | |
tree | 155320467f4e60666ea517a579a42fdf31e735a5 /modules | |
parent | f7ae5442a607ff1fdd7f63b87ad93d067867aeec (diff) | |
download | redot-engine-7d8e981262d823602da17d0c0c5076c9934a7e5e.tar.gz |
Fix crash on importing empty .fbx file
Diffstat (limited to 'modules')
-rw-r--r-- | modules/fbx/editor_scene_importer_fbx.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/fbx/editor_scene_importer_fbx.cpp b/modules/fbx/editor_scene_importer_fbx.cpp index 4d15ca93c1..55d524883f 100644 --- a/modules/fbx/editor_scene_importer_fbx.cpp +++ b/modules/fbx/editor_scene_importer_fbx.cpp @@ -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); |