avcodec/zmbv: remove useless zero check on dimensions

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Michael Niedermayer
2018-08-27 00:46:54 +02:00
parent c5e574a0d0
commit 42f053494c

View File

@ -599,12 +599,11 @@ static av_cold int decode_init(AVCodecContext *avctx)
c->decomp_size = (avctx->width + 255) * 4 * (avctx->height + 64); c->decomp_size = (avctx->width + 255) * 4 * (avctx->height + 64);
/* Allocate decompression buffer */ /* Allocate decompression buffer */
if (c->decomp_size) { c->decomp_buf = av_mallocz(c->decomp_size);
if (!(c->decomp_buf = av_mallocz(c->decomp_size))) { if (!c->decomp_buf) {
av_log(avctx, AV_LOG_ERROR, av_log(avctx, AV_LOG_ERROR,
"Can't allocate decompression buffer.\n"); "Can't allocate decompression buffer.\n");
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
}
} }
c->zstream.zalloc = Z_NULL; c->zstream.zalloc = Z_NULL;