Skip to content

Commit 2c204c4

Browse files
authored
Merge pull request #4284 from vitalybuka/master
Initialize vertexSource
2 parents 327336d + 6626ed1 commit 2c204c4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/LinearMath/btConvexHull.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -678,7 +678,9 @@ HullError HullLibrary::CreateConvexHull(const HullDesc &desc, // describes the
678678
if (vcount < 8) vcount = 8;
679679

680680
btAlignedObjectArray<btVector3> vertexSource;
681-
vertexSource.resize(static_cast<int>(vcount));
681+
btVector3 zero;
682+
zero.setZero();
683+
vertexSource.resize(static_cast<int>(vcount), zero);
682684

683685
btVector3 scale;
684686

0 commit comments

Comments
 (0)