summaryrefslogtreecommitdiff
path: root/firmware/mp3data.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/mp3data.c')
-rw-r--r--firmware/mp3data.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/firmware/mp3data.c b/firmware/mp3data.c
index 5b56c6f6e4..5dbf49a6da 100644
--- a/firmware/mp3data.c
+++ b/firmware/mp3data.c
@@ -464,9 +464,11 @@ int get_mp3file_info(int fd, struct mp3info *info)
464 464
465 /* Now get the next frame to find out the real info about 465 /* Now get the next frame to find out the real info about
466 the mp3 stream */ 466 the mp3 stream */
467 header = find_next_frame(fd, &bytecount, 0x20000, 0); 467 header = find_next_frame(fd, &tmp, 0x20000, 0);
468 if(header == 0) 468 if(header == 0)
469 return -6; 469 return -6;
470
471 bytecount += tmp;
470 472
471 if(!mp3headerinfo(info, header)) 473 if(!mp3headerinfo(info, header))
472 return -7; 474 return -7;