summaryrefslogtreecommitdiff
path: root/libavcodec/snowenc.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-12-13 14:26:03 +0100
committerMichael Niedermayer <michaelni@gmx.at>2012-12-13 14:26:03 +0100
commit5cb080fa5e198303a14a537c9388855ccd0a669b (patch)
tree160c679d6c0fa03e9be4b0424b861a3528a4a514 /libavcodec/snowenc.c
parent7effc26ba74717bb9c808d96791c7cf98911d1a1 (diff)
snowenc: check ff_get_buffer() return value
Fixes CID747722 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/snowenc.c')
-rw-r--r--libavcodec/snowenc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/snowenc.c b/libavcodec/snowenc.c
index 02c3aaab38..de2c859302 100644
--- a/libavcodec/snowenc.c
+++ b/libavcodec/snowenc.c
@@ -239,7 +239,8 @@ static av_cold int encode_init(AVCodecContext *avctx)
ff_set_cmp(&s->dsp, s->dsp.me_cmp, s->avctx->me_cmp);
ff_set_cmp(&s->dsp, s->dsp.me_sub_cmp, s->avctx->me_sub_cmp);
- ff_get_buffer(s->avctx, &s->input_picture);
+ if ((ret = ff_get_buffer(s->avctx, &s->input_picture)) < 0)
+ return ret;
if(s->avctx->me_method == ME_ITER){
int i;