diff options
| author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2017-09-14 22:36:16 +0100 | 
|---|---|---|
| committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2017-09-14 22:36:16 +0100 | 
| commit | e360423598002893f5735b9898a565c8d159d1f8 (patch) | |
| tree | b509090172f82fa07e2beebd91ad9cce9631ff10 /indra | |
| parent | 7839f77071e8e66ebd890a3bea40c6b6c9a8cfff (diff) | |
SL-789 - fix for llassert_always() crash in updateImpostors()
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llvoavatar.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp index ac8b133bb7..4664eeffc4 100644 --- a/indra/newview/llvoavatar.cpp +++ b/indra/newview/llvoavatar.cpp @@ -9029,10 +9029,10 @@ U32 LLVOAvatar::getPartitionType() const  void LLVOAvatar::updateImpostors()  {  	LLViewerCamera::sCurCameraID = LLViewerCamera::CAMERA_WORLD; -	LLCharacter::sAllowInstancesChange = FALSE; -	for (std::vector<LLCharacter*>::iterator iter = LLCharacter::sInstances.begin(); -		iter != LLCharacter::sInstances.end(); ++iter) +    std::vector<LLCharacter*> instances_copy = LLCharacter::sInstances; +	for (std::vector<LLCharacter*>::iterator iter = instances_copy.begin(); +		iter != instances_copy.end(); ++iter)  	{  		LLVOAvatar* avatar = (LLVOAvatar*) *iter;  		if (!avatar->isDead() && avatar->isVisible() | 
