Commit 38cef584 authored by Alex Converse's avatar Alex Converse

Fix a read past end of buffer crash in the mp3 probe

Originally committed as revision 16693 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 7eb68edb
...@@ -364,7 +364,7 @@ static int mp3_read_probe(AVProbeData *p) ...@@ -364,7 +364,7 @@ static int mp3_read_probe(AVProbeData *p)
max_frames = 0; max_frames = 0;
buf = buf0; buf = buf0;
end = buf + p->buf_size - sizeof(uint32_t); end = p->buf + p->buf_size - sizeof(uint32_t);
for(; buf < end; buf= buf2+1) { for(; buf < end; buf= buf2+1) {
buf2 = buf; buf2 = buf;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment