Browse Source

xl: Fix overreads

Signed-off-by: Martin Storsjö <martin@martin.st>
tags/n0.10
Aneesh Dogra Martin Storsjö 14 years ago
parent
commit
00aad121d8
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      libavcodec/xl.c

+ 6
- 0
libavcodec/xl.c View File

@@ -68,6 +68,12 @@ static int decode_frame(AVCodecContext *avctx,
V = a->pic.data[2];

stride = avctx->width - 4;

if (buf_size < avctx->width * avctx->height) {
av_log(avctx, AV_LOG_ERROR, "Packet is too small\n");
return AVERROR_INVALIDDATA;
}

for (i = 0; i < avctx->height; i++) {
/* lines are stored in reversed order */
buf += stride;


Loading…
Cancel
Save