mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
tak_parser: check ff_combine_frame() return code
Fixes CID733706 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
6078bd8024
commit
189fbcede8
@ -66,7 +66,8 @@ static int tak_parse(AVCodecParserContext *s, AVCodecContext *avctx,
|
||||
int tmp_buf_size = FFMIN(2 * TAK_MAX_FRAME_HEADER_BYTES, buf_size);
|
||||
const uint8_t *tmp_buf = buf;
|
||||
|
||||
ff_combine_frame(pc, END_NOT_FOUND, &tmp_buf, &tmp_buf_size);
|
||||
if (ff_combine_frame(pc, END_NOT_FOUND, &tmp_buf, &tmp_buf_size) != -1)
|
||||
return AVERROR(ENOMEM);
|
||||
consumed += tmp_buf_size;
|
||||
buf += tmp_buf_size;
|
||||
buf_size -= tmp_buf_size;
|
||||
|
Loading…
Reference in New Issue
Block a user