Merge pull request #2121 from dforsi/fix/sid-crash

Fix crash when quitting sdrangel when the SID window is open
This commit is contained in:
Edouard Griffiths 2024-05-23 06:22:16 +02:00 committed by GitHub
commit f12ca5dde4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 1 deletions

View File

@ -292,7 +292,11 @@ SIDGUI::~SIDGUI()
clearFromMap();
delete m_goesXRay;
delete m_solarDynamicsObservatory;
if (m_solarDynamicsObservatory)
{
delete m_player;
delete m_solarDynamicsObservatory;
}
delete ui;
}