1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-26 06:46:34 -04:00

DSD demod: delete scope vis to fix memory leak

This commit is contained in:
f4exb 2018-02-17 21:02:48 +01:00
parent 8da0d3a8b4
commit 9162a51f41

View File

@ -319,6 +319,7 @@ DSDDemodGUI::~DSDDemodGUI()
{ {
m_deviceUISet->removeRxChannelInstance(this); m_deviceUISet->removeRxChannelInstance(this);
delete m_dsdDemod; // TODO: check this: when the GUI closes it has to delete the demodulator delete m_dsdDemod; // TODO: check this: when the GUI closes it has to delete the demodulator
delete m_scopeVis;
delete ui; delete ui;
} }