Browse Source

lavc/gif: merge two allocation checks.

tags/n2.0
Clément Bœsch 13 years ago
parent
commit
71411b69a2
1 changed files with 2 additions and 4 deletions
  1. +2
    -4
      libavcodec/gif.c

+ 2
- 4
libavcodec/gif.c View File

@@ -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;
}



Loading…
Cancel
Save