1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-06-21 12:33:15 +00:00

Make Coverity Scan happy: fix uninitialized members in constructor

This commit is contained in:
Carles Fernandez 2021-09-10 22:02:14 +02:00
parent f4699aad07
commit 69db42f3ee
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D
2 changed files with 4 additions and 0 deletions

View File

@ -24,6 +24,7 @@ Tlm_Conf::Tlm_Conf()
remove_dat = false;
enable_reed_solomon = false;
dump_crc_stats = false;
enable_navdata_monitor = false;
}

View File

@ -26,6 +26,9 @@
Tlm_CRC_Stats::Tlm_CRC_Stats()
{
enable_crc_stats = false;
num_crc_ok = 0;
num_crc_not_ok = 0;
channel = 0;
}