diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-02-12 12:21:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-12 12:21:01 +0100 |
commit | 13c50e8aa569bf5fa01a7dc052cde8cdf1886c99 (patch) | |
tree | 85bac7eb1bfbc1ad867ce550b5e5b121644835ca /modules/bullet | |
parent | e40395669cf277e948e1a520a6584ce0deafd91a (diff) | |
parent | d308eb091a6c6d73442a118d7069e855ec2b1c6d (diff) |
Merge pull request #25481 from hpvb/fix-ubsan-asan-reports
Fix many asan and ubsan reported issues
Diffstat (limited to 'modules/bullet')
-rw-r--r-- | modules/bullet/collision_object_bullet.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/bullet/collision_object_bullet.cpp b/modules/bullet/collision_object_bullet.cpp index 91a5ed095a..ef5f21fc21 100644 --- a/modules/bullet/collision_object_bullet.cpp +++ b/modules/bullet/collision_object_bullet.cpp @@ -69,8 +69,12 @@ void CollisionObjectBullet::ShapeWrapper::claim_bt_shape(const btVector3 &body_s CollisionObjectBullet::CollisionObjectBullet(Type p_type) : RIDBullet(), type(p_type), + instance_id(0), + collisionLayer(0), + collisionMask(0), collisionsEnabled(true), m_isStatic(false), + ray_pickable(false), bt_collision_object(NULL), body_scale(1., 1., 1.), force_shape_reset(false), |