mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-11-10 20:10:05 +00:00
Fix uninitialized warning
This commit is contained in:
parent
9bf3f457c3
commit
4929d87759
@ -34,8 +34,8 @@ struct IONGSMSChunkUnpackingCtx
|
|||||||
static constexpr uint8_t word_bitsize_ = sizeof(WT) * 8;
|
static constexpr uint8_t word_bitsize_ = sizeof(WT) * 8;
|
||||||
|
|
||||||
const GnssMetadata::Chunk::WordShift word_shift_direction_;
|
const GnssMetadata::Chunk::WordShift word_shift_direction_;
|
||||||
WT* iterator_; // Not owned by this class, MUST NOT destroy
|
WT* iterator_ = nullptr; // Not owned by this class, MUST NOT destroy
|
||||||
WT current_word_;
|
WT current_word_{};
|
||||||
uint8_t bitshift_ = 0;
|
uint8_t bitshift_ = 0;
|
||||||
|
|
||||||
IONGSMSChunkUnpackingCtx(
|
IONGSMSChunkUnpackingCtx(
|
||||||
@ -51,7 +51,10 @@ struct IONGSMSChunkUnpackingCtx
|
|||||||
{
|
{
|
||||||
iterator_ = &data_buffer[data_buffer_word_count];
|
iterator_ = &data_buffer[data_buffer_word_count];
|
||||||
}
|
}
|
||||||
advance_word(); // Initializes current_word_
|
if (iterator_)
|
||||||
|
{
|
||||||
|
advance_word(); // Initializes current_word_
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void advance_word()
|
void advance_word()
|
||||||
|
Loading…
Reference in New Issue
Block a user