mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-12-23 01:55:48 -05:00
APT demod: fixed some possible memory leaks
This commit is contained in:
parent
8c9f5ff14c
commit
e8dec5db83
@ -65,7 +65,7 @@ void APTDemodSink::resetDecoder()
|
||||
|
||||
APTDemodSink::~APTDemodSink()
|
||||
{
|
||||
delete m_samples;
|
||||
delete[] m_samples;
|
||||
}
|
||||
|
||||
// callback from APT library to get audio samples
|
||||
@ -122,10 +122,10 @@ void APTDemodSink::feed(const SampleVector::const_iterator& begin, const SampleV
|
||||
// 2 lines per second
|
||||
if (m_sampleCount >= APTDEMOD_AUDIO_SAMPLE_RATE)
|
||||
{
|
||||
float *pixels = new float[APT_PROW_WIDTH];
|
||||
apt_getpixelrow(pixels, m_row, &m_zenith, m_row == 0, getsamples, this);
|
||||
|
||||
if (getImageWorkerMessageQueue()) {
|
||||
if (getImageWorkerMessageQueue())
|
||||
{
|
||||
float *pixels = new float[APT_PROW_WIDTH];
|
||||
apt_getpixelrow(pixels, m_row, &m_zenith, m_row == 0, getsamples, this);
|
||||
getImageWorkerMessageQueue()->push(APTDemod::MsgPixels::create(pixels, m_zenith));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user