diff options
author | Alexander Alekseev <alexander.n.alekseev@gmail.com> | 2018-04-02 09:29:34 +0300 |
---|---|---|
committer | Alexander Alekseev <alexander.n.alekseev@gmail.com> | 2018-04-02 09:29:34 +0300 |
commit | b5692511105cddd812e687259740d2a6fa240219 (patch) | |
tree | fb4192db261cd33414c0bca931c8b2e836cec07f | |
parent | 098c7ba4f9c49b472b9417819144378081996874 (diff) |
Fix of a possible memory leak: ConcavePolygonShapeBullet::setup was able to exit without releasing the 'shapeInterface' pointer.
-rw-r--r-- | modules/bullet/shape_bullet.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/bullet/shape_bullet.cpp b/modules/bullet/shape_bullet.cpp index 5d8d391bd9..9cbf83689b 100644 --- a/modules/bullet/shape_bullet.cpp +++ b/modules/bullet/shape_bullet.cpp @@ -337,10 +337,10 @@ void ConcavePolygonShapeBullet::setup(PoolVector<Vector3> p_faces) { int src_face_count = faces.size(); if (0 < src_face_count) { - btTriangleMesh *shapeInterface = bulletnew(btTriangleMesh); - // It counts the faces and assert the array contains the correct number of vertices. ERR_FAIL_COND(src_face_count % 3); + + btTriangleMesh *shapeInterface = bulletnew(btTriangleMesh); src_face_count /= 3; PoolVector<Vector3>::Read r = p_faces.read(); const Vector3 *facesr = r.ptr(); |