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

Fix memleaks

Frees memory allocated
in ChannelPowerSink::applyChannelSettings(int, int, bool) /home/daniele/Programmazione/ham/sdrangel/plugins/channelrx/channelpower/channelpowersink.cpp:120
This commit is contained in:
Daniele Forsi 2024-05-26 21:43:23 +02:00
parent 8b5a5b7f70
commit 302f99382a

View File

@ -35,6 +35,7 @@ ChannelPowerSink::ChannelPowerSink(ChannelPower *channelPower) :
ChannelPowerSink::~ChannelPowerSink()
{
delete m_lowpassFFT;
}
void ChannelPowerSink::feed(const SampleVector::const_iterator& begin, const SampleVector::const_iterator& end)