LimeSDR input: code cleanup

This commit is contained in:
f4exb 2017-09-30 19:05:16 +02:00
parent 7c558b15f5
commit 463abb637f
1 changed files with 3 additions and 1 deletions

View File

@ -269,6 +269,8 @@ void LimeSDRInput::closeDevice()
return;
}
if (m_running) { stop(); }
// destroy the stream
LMS_DestroyStream(m_deviceShared.m_deviceParams->getDevice(), &m_streamId);
m_streamId.handle = 0;
@ -298,7 +300,7 @@ bool LimeSDRInput::start()
return false;
}
if (m_running) stop();
if (m_running) { stop(); }
applySettings(m_settings, true);