radio: Fix crash with radioart after skipping some stations

Change-Id: I5dbf60598f9b0b7d56272b6736726c1e6bc2295c
This commit is contained in:
Thomas Martitz 2014-01-15 14:48:17 +01:00
parent 80aac924e8
commit 644d9eab6c

View file

@ -47,10 +47,10 @@ static struct radioart radioart[MAX_RADIOART_IMAGES];
static int find_oldest_image_index(void) static int find_oldest_image_index(void)
{ {
int i; unsigned i;
long oldest_tick = current_tick; long oldest_tick = current_tick;
int oldest_idx = -1; int oldest_idx = -1;
for(i = 0; ARRAYLEN(radioart); i++) for(i = 0; i < ARRAYLEN(radioart); i++)
{ {
struct radioart *ra = &radioart[i]; struct radioart *ra = &radioart[i];
/* last_tick is only valid if it's actually loaded, i.e. valid handle */ /* last_tick is only valid if it's actually loaded, i.e. valid handle */