You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-11 14:30:22 +02:00
lavc/gif: merge two allocation checks.
This commit is contained in:
@ -191,11 +191,9 @@ static av_cold int gif_encode_init(AVCodecContext *avctx)
|
|||||||
|
|
||||||
avctx->coded_frame = &s->picture;
|
avctx->coded_frame = &s->picture;
|
||||||
s->lzw = av_mallocz(ff_lzw_encode_state_size);
|
s->lzw = av_mallocz(ff_lzw_encode_state_size);
|
||||||
if (!s->lzw)
|
|
||||||
return AVERROR(ENOMEM);
|
|
||||||
s->buf = av_malloc(avctx->width*avctx->height*2);
|
s->buf = av_malloc(avctx->width*avctx->height*2);
|
||||||
if (!s->buf)
|
if (!s->buf || !s->lzw)
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user