diff options
| -rw-r--r-- | indra/llappearance/llavatarappearancedefines.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llappearance/llavatarappearancedefines.cpp b/indra/llappearance/llavatarappearancedefines.cpp index 5f98f2c8c1..47798844bc 100644 --- a/indra/llappearance/llavatarappearancedefines.cpp +++ b/indra/llappearance/llavatarappearancedefines.cpp @@ -300,7 +300,8 @@ EBakedTextureIndex LLAvatarAppearanceDictionary::findBakedByImageName(std::strin  LLWearableType::EType LLAvatarAppearanceDictionary::getTEWearableType(ETextureIndex index ) const  { -    return getTexture(index)->mWearableType; +    auto* tex = getTexture(index); +    return tex ? tex->mWearableType : LLWearableType::WT_INVALID;  }  // static  | 
