1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-04-05 19:18:38 -04:00

Multi device support: fixed core dump (seg fault) brutally by commenting out failing instruction (AudioOutput destruction of QAudioOutput)

This commit is contained in:
f4exb 2016-05-20 22:11:02 +02:00
parent 2f6db428bc
commit c16aea9baf

View File

@ -122,7 +122,7 @@ void AudioOutput::stop()
if (m_audioUsageCount == 0)
{
QIODevice::close();
delete m_audioOutput;
// delete m_audioOutput;
}
}
}