mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 13:15:18 -05:00
[COV] metadata module, fix uninit warnings
Change-Id: Ifeb22642d7fb683542ff9dcfca0bc58c91ab5f38
This commit is contained in:
parent
ccdd9e6784
commit
2a88ec50cd
4 changed files with 9 additions and 9 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue