Skip to content
Snippets Groups Projects
Commit f46185c2 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

mp3demux: fix off by 1 error

parent 3183c38a
No related branches found
No related tags found
No related merge requests found
......@@ -183,7 +183,7 @@ static int mp3_read_packet(AVFormatContext *s, AVPacket *pkt)
return AVERROR_EOF;
}
if (ret > ID3v1_TAG_SIZE &&
if (ret >= ID3v1_TAG_SIZE &&
memcmp(&pkt->data[ret - ID3v1_TAG_SIZE], "TAG", 3) == 0)
ret -= ID3v1_TAG_SIZE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment