mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2026-08-19 08:38:54 +00:00
Fix uninitialized scalar fields
This commit is contained in:
@@ -84,7 +84,8 @@ galileo_telemetry_decoder_gs::galileo_telemetry_decoder_gs(
|
||||
d_print_cnav_page(true),
|
||||
d_enable_navdata_monitor(conf.enable_navdata_monitor),
|
||||
d_dump_crc_stats(conf.dump_crc_stats),
|
||||
d_enable_reed_solomon_inav(false)
|
||||
d_enable_reed_solomon_inav(false),
|
||||
d_valid_timetag(false)
|
||||
{
|
||||
// prevent telemetry symbols accumulation in output buffers
|
||||
this->set_max_noutput_items(1);
|
||||
|
||||
@@ -102,7 +102,7 @@ private:
|
||||
Galileo_Fnav_Message d_fnav_nav;
|
||||
|
||||
Nav_Message_Packet d_nav_msg_packet;
|
||||
GnssTime d_current_timetag;
|
||||
GnssTime d_current_timetag{};
|
||||
|
||||
std::unique_ptr<Tlm_CRC_Stats> d_Tlm_CRC_Stats;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user