diff options
author | Haoyu Qiu <timothyqiu32@gmail.com> | 2022-02-14 22:21:28 +0800 |
---|---|---|
committer | Haoyu Qiu <timothyqiu32@gmail.com> | 2022-02-14 22:21:28 +0800 |
commit | 66838d88e1b0b26aff727ae9aa966289115b4a31 (patch) | |
tree | b6340d08e3e290cbab3c9685cfba81094e2e6015 /servers/physics_server_2d.cpp | |
parent | 6e73aa0497b9cfc1c28863e655991106e677e69c (diff) | |
download | redot-engine-66838d88e1b0b26aff727ae9aa966289115b4a31.tar.gz |
Validate PhysicsDirectSpaceState{2,3}D::_intersect_point input
Diffstat (limited to 'servers/physics_server_2d.cpp')
-rw-r--r-- | servers/physics_server_2d.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/servers/physics_server_2d.cpp b/servers/physics_server_2d.cpp index d8f2a2a780..45816e3244 100644 --- a/servers/physics_server_2d.cpp +++ b/servers/physics_server_2d.cpp @@ -336,6 +336,8 @@ Dictionary PhysicsDirectSpaceState2D::_intersect_ray(const Ref<PhysicsRayQueryPa } Array PhysicsDirectSpaceState2D::_intersect_point(const Ref<PhysicsPointQueryParameters2D> &p_point_query, int p_max_results) { + ERR_FAIL_COND_V(p_point_query.is_null(), Array()); + Vector<ShapeResult> ret; ret.resize(p_max_results); |