summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorTofu Linden <tofu.linden@lindenlab.com>2010-01-27 14:04:02 -0800
committerTofu Linden <tofu.linden@lindenlab.com>2010-01-27 14:04:02 -0800
commite70d7fca4b55d15547082a67101d5f8935d3a40a (patch)
tree11ad43279a7d03fc2699d073cf24f5f2e62b771d /indra
parentccacd7d7acb1a24b754008cd35e9552fed93a1d1 (diff)
CID-155
Checker: OVERRUN_DYNAMIC Function: LLImageGL::updatePickMask(int, int, const unsigned char *) File: /indra/llrender/llimagegl.cpp not a bug, AFAICT.
Diffstat (limited to 'indra')
-rw-r--r--indra/llrender/llimagegl.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/indra/llrender/llimagegl.cpp b/indra/llrender/llimagegl.cpp
index 46478ba3c9..8bcc4723ae 100644
--- a/indra/llrender/llimagegl.cpp
+++ b/indra/llrender/llimagegl.cpp
@@ -1716,10 +1716,7 @@ void LLImageGL::updatePickMask(S32 width, S32 height, const U8* data_in)
{
U32 pick_idx = pick_bit/8;
U32 pick_offset = pick_bit%8;
- if (pick_idx >= size)
- {
- llerrs << "WTF?" << llendl;
- }
+ llassert(pick_idx < size);
mPickMask[pick_idx] |= 1 << pick_offset;
}