Skip to content

Commit

Permalink
erase iters properly, please
Browse files Browse the repository at this point in the history
  • Loading branch information
LiruMouse committed Mar 22, 2020
1 parent 7597ce3 commit 0511d59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion indra/newview/llvoavatar.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6317,7 +6317,7 @@ void LLVOAvatar::processAnimationStateChanges()
// <edit>
LLFloaterExploreAnimations::processAnim(getID(), anim_it->first, false);
// </edit>
mPlayingAnimations.erase(anim_it++);
anim_it = mPlayingAnimations.erase(anim_it);
continue;
}

Expand Down

0 comments on commit 0511d59

Please sign in to comment.