1
0
Fork 0
forked from len0rd/rockbox

Increased the buffer size for get_mp3file_info(). This is supposed to fix bugs #722233, #722521 and #723922

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3566 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2003-04-19 00:27:15 +00:00
parent e43b78ac46
commit 1c32bd0f48

View file

@ -363,7 +363,7 @@ unsigned long buf_find_next_frame(int fd, int *offset, int max_offset,
int get_mp3file_info(int fd, struct mp3info *info)
{
unsigned char frame[1050];
unsigned char frame[1500];
unsigned char *vbrheader;
unsigned long header;
int bytecount;