Fix bug introduced during replace of list wrapper with std equivalents in r5378.

R=henrika@webrtc.org, pbos@webrtc.org, henrike@webrtc.org
TBR=henrike@webrtc.org
BUG=2164

Review URL: https://webrtc-codereview.appspot.com/7639004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@5437 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
andresp@webrtc.org 2014-01-27 12:33:30 +00:00
parent c8b99a49d1
commit 2397a17c6b

View File

@ -697,7 +697,7 @@ void AudioConferenceMixerImpl::UpdateToMix(
mixParticipantList->erase(replaceFrame->id_);
activeList.erase(replaceItem);
activeList.push_front(*replaceItem);
activeList.push_front(audioFrame);
(*mixParticipantList)[audioFrame->id_] = *participant;
assert(mixParticipantList->size() <=
kMaximumAmountOfMixedParticipants);