Commit 9c7fd997 authored by Baptiste Coudurier's avatar Baptiste Coudurier

10l, protect malloc overflow

Originally committed as revision 12205 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent b8d3daca
......@@ -368,6 +368,8 @@ static int aiff_read_header(AVFormatContext *s,
url_fskip(pb, size - 8);
break;
case MKTAG('w', 'a', 'v', 'e'):
if ((uint64_t)size > (1<<30))
return -1;
st->codec->extradata = av_mallocz(size + FF_INPUT_BUFFER_PADDING_SIZE);
if (!st->codec->extradata)
return AVERROR(ENOMEM);
......
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