[COV] metadata module, fix uninit warnings

Change-Id: Ifeb22642d7fb683542ff9dcfca0bc58c91ab5f38
This commit is contained in:
William Wilgus 2022-03-20 09:06:40 -04:00
parent ccdd9e6784
commit 2a88ec50cd
4 changed files with 9 additions and 9 deletions

View file

@ -129,9 +129,9 @@ static int asf_intdecode(int fd, int type, int length)
{
int bytes = 0;
int ret;
uint16_t tmp16;
uint32_t tmp32;
uint64_t tmp64;
uint16_t tmp16 = 0;
uint32_t tmp32 = 0;
uint64_t tmp64 = 0;
if (type == 3) {
bytes = read_uint32le(fd, &tmp32);