diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2014-01-15 14:48:17 +0100 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2014-01-15 14:48:55 +0100 |
| commit | 644d9eab6c55c736e72afdb4a8f3432a07d8fc11 (patch) | |
| tree | bb48ebf5a2e2cf120c0655d9d49239982415a96d | |
| parent | 80aac924e8321e7d50f31d0b62e48fee469282ef (diff) | |
| download | rockbox-644d9eab6c55c736e72afdb4a8f3432a07d8fc11.zip rockbox-644d9eab6c55c736e72afdb4a8f3432a07d8fc11.tar.gz rockbox-644d9eab6c55c736e72afdb4a8f3432a07d8fc11.tar.bz2 rockbox-644d9eab6c55c736e72afdb4a8f3432a07d8fc11.tar.xz | |
radio: Fix crash with radioart after skipping some stations
Change-Id: I5dbf60598f9b0b7d56272b6736726c1e6bc2295c
| -rw-r--r-- | apps/radio/radioart.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/radio/radioart.c b/apps/radio/radioart.c index cab6aa2..86a987c 100644 --- a/apps/radio/radioart.c +++ b/apps/radio/radioart.c @@ -47,10 +47,10 @@ static struct radioart radioart[MAX_RADIOART_IMAGES]; static int find_oldest_image_index(void) { - int i; + unsigned i; long oldest_tick = current_tick; int oldest_idx = -1; - for(i = 0; ARRAYLEN(radioart); i++) + for(i = 0; i < ARRAYLEN(radioart); i++) { struct radioart *ra = &radioart[i]; /* last_tick is only valid if it's actually loaded, i.e. valid handle */ |