mirror of
				https://github.com/gnss-sdr/gnss-sdr
				synced 2025-10-31 15:23:04 +00:00 
			
		
		
		
	Fix uninitialized warning
This commit is contained in:
		| @@ -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() | ||||
|     { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Carles Fernandez
					Carles Fernandez