Commit 59846452 authored by Vittorio Giovara's avatar Vittorio Giovara

svq1enc: check ff_get_buffer return value

CC: libav-stable@libav.org
Bug-Id: CID 747723
parent 994ab180
......@@ -580,8 +580,12 @@ static int svq1_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
}
if (!s->current_picture->data[0]) {
ff_get_buffer(avctx, s->current_picture, 0);
ff_get_buffer(avctx, s->last_picture, 0);
ret = ff_get_buffer(avctx, s->current_picture, 0);
if (ret < 0)
return ret;
ret = ff_get_buffer(avctx, s->last_picture, 0);
if (ret < 0)
return ret;
s->scratchbuf = av_malloc(s->current_picture->linesize[0] * 16 * 2);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment