From ef1d58f034233a0d8b5d0b5dbf539e851ffc726c Mon Sep 17 00:00:00 2001 From: sps1112 Date: Wed, 3 Mar 2021 16:32:50 +0530 Subject: [PATCH] Add size check in Control._edit_set_state to prevent crash --- scene/gui/control.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scene/gui/control.cpp b/scene/gui/control.cpp index bff3024e38e..c625d6a2f3d 100644 --- a/scene/gui/control.cpp +++ b/scene/gui/control.cpp @@ -73,6 +73,10 @@ Dictionary Control::_edit_get_state() const { } void Control::_edit_set_state(const Dictionary &p_state) { + ERR_FAIL_COND((p_state.size() <= 0) || + p_state["rotation"].is_null() || p_state["scale"].is_null() || + p_state["pivot"].is_null() || p_state["anchors"].is_null() || p_state["offsets"].is_null()); + Dictionary state = p_state; set_rotation(state["rotation"]);