Browse Source

cljr: fix buf_size sanity check

Signed-off-by: Janne Grunau <janne-libav@jannau.net>
tags/n0.10
Paul B. Mahol Janne Grunau 14 years ago
parent
commit
2e7905eee8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/cljr.c

+ 1
- 1
libavcodec/cljr.c View File

@@ -62,7 +62,7 @@ static int decode_frame(AVCodecContext *avctx,
return AVERROR_INVALIDDATA;
}

if (buf_size / avctx->height < avctx->width) {
if (buf_size < avctx->height * avctx->width) {
av_log(avctx, AV_LOG_ERROR,
"Resolution larger than buffer size. Invalid header?\n");
return AVERROR_INVALIDDATA;


Loading…
Cancel
Save