Merge pull request #34259 from timothyqiu/validate-texture-32982

Fixes crash after set_piece_texture with invalid texture
This commit is contained in:
Rémi Verschelde 2019-12-11 08:41:29 +01:00 committed by GitHub
commit 30cf60bb89
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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<Texture> &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;
};