1
0
Fork 0
forked from len0rd/rockbox

Fix uninitialized variable in decoding of RDS radio text

Change-Id: Ifc678166ac70cc8fc76897c76ccbc4bc3f88cc14
This commit is contained in:
Bertrik Sikken 2012-11-09 19:09:39 +01:00
parent 6242d9f7fc
commit 1272e85299

View file

@ -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++)