From 5586103a9475893bb1a2bcb4ebf7f5005544253f Mon Sep 17 00:00:00 2001 From: Haoyu Qiu Date: Wed, 11 Dec 2019 11:24:42 +0800 Subject: [PATCH] Validates texture in set_piece_texture --- scene/resources/texture.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/scene/resources/texture.cpp b/scene/resources/texture.cpp index 593c399f62..b21546af2f 100644 --- a/scene/resources/texture.cpp +++ b/scene/resources/texture.cpp @@ -1333,6 +1333,7 @@ void LargeTexture::set_piece_offset(int p_idx, const Point2 &p_offset) { void LargeTexture::set_piece_texture(int p_idx, const Ref &p_texture) { ERR_FAIL_COND(p_texture == this); + ERR_FAIL_COND(p_texture.is_null()); ERR_FAIL_INDEX(p_idx, pieces.size()); pieces.write[p_idx].texture = p_texture; };