mirror of
https://github.com/isledecomp/SIEdit.git
synced 2025-04-05 17:39:44 -04:00
app: fix issue trying to erase "end" element of vector
This commit is contained in:
parent
74683de19a
commit
80ea063c55
1 changed files with 5 additions and 1 deletions
|
@ -507,7 +507,11 @@ void MediaPanel::AudioOutputEnded()
|
|||
{
|
||||
auto out = static_cast<QAudioOutput*>(sender());
|
||||
|
||||
m_audioOutputs.erase(std::find(m_audioOutputs.begin(), m_audioOutputs.end(), out));
|
||||
auto it = std::find(m_audioOutputs.begin(), m_audioOutputs.end(), out);
|
||||
if (it != m_audioOutputs.end()) {
|
||||
m_audioOutputs.erase(it);
|
||||
}
|
||||
|
||||
delete out;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue