diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-09-20 13:22:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-20 13:22:11 +0200 |
commit | 65e91798a5245618d89833c643c0fad7e5a04ad0 (patch) | |
tree | 48d88c52053b8cd30c2939f1e44db58ab66c2b8c | |
parent | b1dafd9c16a4d7f19391cc0f51983ef3ee0f37e5 (diff) | |
parent | ca55dfc00c315ee3f518f2f1715ef0dbf8d39573 (diff) |
Merge pull request #52856 from e8newallm/52816
Corrected GLTFDocument::save_scene from processing a nullptr
-rw-r--r-- | modules/gltf/gltf_document.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/gltf/gltf_document.cpp b/modules/gltf/gltf_document.cpp index d4f4221663..df2856ec7c 100644 --- a/modules/gltf/gltf_document.cpp +++ b/modules/gltf/gltf_document.cpp @@ -6744,6 +6744,8 @@ Error GLTFDocument::_serialize_file(Ref<GLTFState> state, const String p_path) { Error GLTFDocument::save_scene(Node *p_node, const String &p_path, const String &p_src_path, uint32_t p_flags, float p_bake_fps, Ref<GLTFState> r_state) { + ERR_FAIL_NULL_V(p_node, ERR_INVALID_PARAMETER); + Ref<GLTFDocument> gltf_document; gltf_document.instantiate(); if (r_state == Ref<GLTFState>()) { |