summaryrefslogtreecommitdiff
path: root/indra/llmath
diff options
context:
space:
mode:
authorTofu Linden <tofu.linden@lindenlab.com>2010-02-10 16:49:56 +0000
committerTofu Linden <tofu.linden@lindenlab.com>2010-02-10 16:49:56 +0000
commit792ebb1936867dae219cc19b1d18d1bbe6e75656 (patch)
treef62a39892abbc7cc6821f6bc3b528cea6cbeba3e /indra/llmath
parent15825cb8992ce692172907714c7cd64a48ed5fa4 (diff)
CID-423
Checker: UNINIT Function: LLVolume::cleanupTriangleData(int, const std::vector<LLVolume::Point, std::allocator<LLVolume::Point>> &, int, int *, int &, LLVector3 **, int &, int **) File: /indra/llmath/llvolume.cpp The code looks right, I'm just adding an llassert().
Diffstat (limited to 'indra/llmath')
-rw-r--r--indra/llmath/llvolume.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/llmath/llvolume.cpp b/indra/llmath/llvolume.cpp
index df4c618ac1..192c6157a8 100644
--- a/indra/llmath/llvolume.cpp
+++ b/indra/llmath/llvolume.cpp
@@ -3822,6 +3822,7 @@ BOOL LLVolume::cleanupTriangleData( const S32 num_input_vertices,
// Generate the vertex mapping and the list of vertices without
// duplicates. This will crash if there are no vertices.
+ llassert(num_input_vertices > 0); // check for no vertices!
S32 *vertex_mapping = new S32[num_input_vertices];
LLVector3 *new_vertices = new LLVector3[num_input_vertices];
LLVertexIndexPair *prev_pairp = NULL;