FIRE-34767 - (bugsplat) Fixed null pointer dereference in motioncontroller
parent
6e7da8eaa8
commit
23a1026fd9
|
|
@ -573,7 +573,7 @@ void LLMotionController::updateMotionsByType(LLMotion::LLMotionBlendType anim_ty
|
|||
{
|
||||
motion_list_t::iterator curiter = iter++;
|
||||
LLMotion* motionp = *curiter;
|
||||
if (motionp->getBlendType() != anim_type)
|
||||
if (!motionp || motionp->getBlendType() != anim_type) // <FS:Beq/> FIRE-34767 - null pointer dereference
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue