Commit 71411b69 authored by Clément Bœsch's avatar Clément Bœsch

lavc/gif: merge two allocation checks.

parent dfb32310
......@@ -191,11 +191,9 @@ static av_cold int gif_encode_init(AVCodecContext *avctx)
avctx->coded_frame = &s->picture;
s->lzw = av_mallocz(ff_lzw_encode_state_size);
if (!s->lzw)
return AVERROR(ENOMEM);
s->buf = av_malloc(avctx->width*avctx->height*2);
if (!s->buf)
return AVERROR(ENOMEM);
if (!s->buf || !s->lzw)
return AVERROR(ENOMEM);
return 0;
}
......
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