提交 b6fa746e 编写于 作者: J Justin Ruggles

flacdec: skip frame when allocated data size is too small

Originally committed as revision 18155 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 492cc392
...@@ -693,7 +693,7 @@ static int flac_decode_frame(AVCodecContext *avctx, ...@@ -693,7 +693,7 @@ static int flac_decode_frame(AVCodecContext *avctx,
if (output_size > alloc_data_size) { if (output_size > alloc_data_size) {
av_log(s->avctx, AV_LOG_ERROR, "output data size is larger than " av_log(s->avctx, AV_LOG_ERROR, "output data size is larger than "
"allocated data size\n"); "allocated data size\n");
return -1; goto end;
} }
*data_size = output_size; *data_size = output_size;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册