forked from len0rd/rockbox
Fix uninitialized variable in decoding of RDS radio text
Change-Id: Ifc678166ac70cc8fc76897c76ccbc4bc3f88cc14
This commit is contained in:
parent
6242d9f7fc
commit
1272e85299
1 changed files with 1 additions and 1 deletions
|
|
@ -149,7 +149,7 @@ static bool handle_rt(int pos, char c)
|
|||
static bool handle_group2(uint16_t data[4])
|
||||
{
|
||||
int abflag, segment, version, pos;
|
||||
bool done;
|
||||
bool done = false;
|
||||
|
||||
/* remove obsolete segments */
|
||||
for(int i = 0; i < 16; i++)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue