Merge commit 'fc85646ad4'
* commit 'fc85646ad4': libopusdec: fix out-of-bounds read libschroedingerdec: fix leaking of framewithpts libschroedingerdec: don't produce empty frames This commit is a noop, seea86ebbf7f63c0328d58d8c8f543b81Merged-by: James Almer <jamrial@gmail.com>
This commit is contained in:
commit
c5fd47fa8a
1 changed files with 2 additions and 2 deletions
|
|
@ -309,9 +309,9 @@ static int libschroedinger_decode_frame(AVCodecContext *avctx,
|
|||
framewithpts = ff_schro_queue_pop(&p_schro_params->dec_frame_queue);
|
||||
|
||||
if (framewithpts && framewithpts->frame && framewithpts->frame->components[0].stride) {
|
||||
|
||||
if ((ret = ff_get_buffer(avctx, avframe, 0)) < 0)
|
||||
if ((ret = ff_get_buffer(avctx, avframe, 0)) < 0) {
|
||||
goto end;
|
||||
}
|
||||
|
||||
memcpy(avframe->data[0],
|
||||
framewithpts->frame->components[0].data,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue