Commit 42f05349 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/zmbv: remove useless zero check on dimensions

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent c5e574a0
......@@ -599,12 +599,11 @@ static av_cold int decode_init(AVCodecContext *avctx)
c->decomp_size = (avctx->width + 255) * 4 * (avctx->height + 64);
/* Allocate decompression buffer */
if (c->decomp_size) {
if (!(c->decomp_buf = av_mallocz(c->decomp_size))) {
av_log(avctx, AV_LOG_ERROR,
"Can't allocate decompression buffer.\n");
return AVERROR(ENOMEM);
}
c->decomp_buf = av_mallocz(c->decomp_size);
if (!c->decomp_buf) {
av_log(avctx, AV_LOG_ERROR,
"Can't allocate decompression buffer.\n");
return AVERROR(ENOMEM);
}
c->zstream.zalloc = Z_NULL;
......
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