Skip to content
This repository was archived by the owner on Oct 23, 2024. It is now read-only.

Commit abbe86f

Browse files
committed
Move it++ in another line to align with m_outputs fixing
1 parent 8eabe58 commit abbe86f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

source/agent/video/videoMixer/VideoMixer.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,8 @@ void VideoMixer::closeAll()
215215

216216
auto it = m_inputs.begin();
217217
while (it != m_inputs.end()) {
218-
m_frameMixer->removeInput(*it++);
218+
m_frameMixer->removeInput(*it);
219+
it++;
219220
}
220221
m_inputs.clear();
221222

0 commit comments

Comments
 (0)