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;
|
||||
|
||||
const GnssMetadata::Chunk::WordShift word_shift_direction_;
|
||||
WT* iterator_; // Not owned by this class, MUST NOT destroy
|
||||
WT current_word_;
|
||||
WT* iterator_ = nullptr; // Not owned by this class, MUST NOT destroy
|
||||
WT current_word_{};
|
||||
uint8_t bitshift_ = 0;
|
||||
|
||||
IONGSMSChunkUnpackingCtx(
|
||||
@ -51,8 +51,11 @@ struct IONGSMSChunkUnpackingCtx
|
||||
{
|
||||
iterator_ = &data_buffer[data_buffer_word_count];
|
||||
}
|
||||
if (iterator_)
|
||||
{
|
||||
advance_word(); // Initializes current_word_
|
||||
}
|
||||
}
|
||||
|
||||
void advance_word()
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user