summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2017-04-13 19:04:26 -0300
committerJames Almer <jamrial@gmail.com>2017-04-13 19:07:14 -0300
commitc5fd47fa8a300fc51489a47da94041609545803c (patch)
treea368ed1d5d532ee5137823273de02d513710c990 /libavcodec
parentbceb3d0f8621dd4dcdab2148e29d1473165d9cb6 (diff)
parentfc85646ad495f3418042468da415af73a7a07334 (diff)
Merge commit 'fc85646ad495f3418042468da415af73a7a07334'
* commit 'fc85646ad495f3418042468da415af73a7a07334': libopusdec: fix out-of-bounds read libschroedingerdec: fix leaking of framewithpts libschroedingerdec: don't produce empty frames This commit is a noop, see a86ebbf7f641bc797002ddea7fb517759722cd1b 3c0328d58d98664b05efdd377d3fe66a569d385e 8c8f543b81aa2b50bb6a6cfd370a0061281492a3 Merged-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/libschroedingerdec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/libschroedingerdec.c b/libavcodec/libschroedingerdec.c
index 02cbe57c82..148a9b6098 100644
--- a/libavcodec/libschroedingerdec.c
+++ b/libavcodec/libschroedingerdec.c
@@ -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,