flacdec: skip frame when allocated data size is too small

Originally committed as revision 18155 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Justin Ruggles 2009-03-22 21:31:23 +00:00
parent 492cc392fa
commit b6fa746e39
1 changed files with 1 additions and 1 deletions

View File

@ -693,7 +693,7 @@ static int flac_decode_frame(AVCodecContext *avctx,
if (output_size > alloc_data_size) {
av_log(s->avctx, AV_LOG_ERROR, "output data size is larger than "
"allocated data size\n");
return -1;
goto end;
}
*data_size = output_size;