Transceiver: Provide initial value for TransceiverState::mFiller in constructor

Fixes: Coverity CID#211258
Change-Id: Ic00cc5939ca46407cb5bf8b6fcbcf3dc677041a2
This commit is contained in:
Pau Espin 2020-07-15 13:57:03 +02:00
parent 1d0c6fe752
commit b70686c13d
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ static void dispatch_trx_rate_ctr_change(TransceiverState *state, unsigned int c
}
TransceiverState::TransceiverState()
: mRetrans(false), mNoiseLev(0.0), mNoises(NOISE_CNT), mPower(0.0)
: mFiller(FILLER_ZERO), mRetrans(false), mNoiseLev(0.0), mNoises(NOISE_CNT), mPower(0.0)
{
for (int i = 0; i < 8; i++) {
chanType[i] = Transceiver::NONE;