From 2a88ec50cd15cf454de99c69d1f7a120ee2368f3 Mon Sep 17 00:00:00 2001 From: William Wilgus Date: Sun, 20 Mar 2022 09:06:40 -0400 Subject: [COV] metadata module, fix uninit warnings Change-Id: Ifeb22642d7fb683542ff9dcfca0bc58c91ab5f38 --- lib/rbcodec/metadata/asf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/rbcodec/metadata/asf.c') diff --git a/lib/rbcodec/metadata/asf.c b/lib/rbcodec/metadata/asf.c index b578746658..06f7470a69 100644 --- a/lib/rbcodec/metadata/asf.c +++ b/lib/rbcodec/metadata/asf.c @@ -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); -- cgit v1.2.3