FIRE-34805 - EEP-transition related crash

Make the code more defensive for attempts to update a null.
This is really treating the symptom though.
master
Beq 2024-11-04 02:23:07 +00:00
parent be6f2ef437
commit c12331f052
1 changed files with 8 additions and 1 deletions

View File

@ -688,7 +688,14 @@ void LLSettingsBlender::update(const LLSettingsBase::BlendFactor& blendf)
F64 res = setBlendFactor(blendf);
llassert(res >= 0.0 && res <= 1.0);
(void)res;
mTarget->update();
// <FS:Beq> FIRE-34805 another issue with missing EEP on or shortly after login.
// Ideally we'll find the true fix at a higher level. But for now fix the symptom.
// mTarget->update();
if(mTarget)
{
mTarget->update();
}
// </FS:Beq>
}
F64 LLSettingsBlender::setBlendFactor(const LLSettingsBase::BlendFactor& blendf_in)