Fixed -Wuninitialized warnings

pull/714/head
f4exb 2020-11-14 22:40:22 +01:00
rodzic 9bd8e9c34e
commit 142b8c997a
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -477,7 +477,7 @@ unsigned int ChirpChatDemodSink::argmax(
{
magsqMax = 0.0;
magsqTotal = 0.0;
unsigned int imax;
unsigned int imax = 0;
double magSum = 0.0;
for (unsigned int i = 0; i < fftMult*fftLength; i++)

Wyświetl plik

@ -28,7 +28,6 @@
RemoteInputBuffer::RemoteInputBuffer() :
m_decoderSlots(nullptr),
m_frames(nullptr),
m_decoderIndexHead(m_nbDecoderSlots/2),
m_curNbBlocks(0),
m_minNbBlocks(256),
m_curOriginalBlocks(0),
@ -47,6 +46,7 @@ RemoteInputBuffer::RemoteInputBuffer() :
{
m_currentMeta.init();
setNbDecoderSlots(16);
m_decoderIndexHead = m_nbDecoderSlots/2;
m_tvOut_sec = 0;
m_tvOut_usec = 0;
m_readNbBytes = 1;