Init pointer with null

This commit is contained in:
Geoffrey Merck 2020-05-08 17:15:23 +02:00
parent c81d13395b
commit bb731e7890
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@
CFMDownsampler::CFMDownsampler(uint16_t length) : CFMDownsampler::CFMDownsampler(uint16_t length) :
m_ringBuffer(length),//length might need tweaking m_ringBuffer(length),//length might need tweaking
m_samplePack(0U), m_samplePack(0U),
m_samplePackPointer(0U), m_samplePackPointer(NULL),
m_packIndex(0U), m_packIndex(0U),
m_downSampleIndex(0U) m_downSampleIndex(0U)
{ {