summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorNicky <none@none>2012-07-09 13:37:21 +0200
committerNicky <none@none>2012-07-09 13:37:21 +0200
commit82c51c8d29d7c9a59373f45fa794bbc0729c97d5 (patch)
treee2094969b31107a420634ed69033d8c155ad2a12 /indra
parent8902f4c6c0fed60ae6d8b7596e61c7b8387079c1 (diff)
Crashfix: LLVOAvatar::updateTextures in some odd cases getTE can return 0. Safeguard against that.
Diffstat (limited to 'indra')
-rwxr-xr-xindra/newview/llvoavatar.cpp15
1 files changed, 14 insertions, 1 deletions
diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp
index 39222c25fd..627238b0f5 100755
--- a/indra/newview/llvoavatar.cpp
+++ b/indra/newview/llvoavatar.cpp
@@ -4567,7 +4567,20 @@ void LLVOAvatar::updateTextures()
LLWearableType::EType wearable_type = LLVOAvatarDictionary::getTEWearableType((ETextureIndex)texture_index);
U32 num_wearables = gAgentWearables.getWearableCount(wearable_type);
const LLTextureEntry *te = getTE(texture_index);
- const F32 texel_area_ratio = fabs(te->mScaleS * te->mScaleT);
+
+ // getTE can return 0.
+ // Not sure yet why it does, but of course it crashes when te->mScale? gets used.
+ // Put safeguard in place so this corner case get better handling and does not result in a crash.
+ F32 texel_area_ratio = 1.0f;
+ if( te )
+ {
+ texel_area_ratio = fabs(te->mScaleS * te->mScaleT);
+ }
+ else
+ {
+ llwarns << "getTE( " << texture_index << " ) returned 0" <<llendl;
+ }
+
LLViewerFetchedTexture *imagep = NULL;
for (U32 wearable_index = 0; wearable_index < num_wearables; wearable_index++)
{