Browse Source

exr: use buf_size instead of recalculating same value

Signed-off-by: Paul B Mahol <onemda@gmail.com>
tags/n1.0
Paul B Mahol 13 years ago
parent
commit
dc0d551b52
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/exr.c

+ 1
- 1
libavcodec/exr.c View File

@@ -173,7 +173,7 @@ static int decode_frame(AVCodecContext *avctx,
s->channel_offsets[3] = -1;
s->bits_per_color_id = -1;

if (buf_end - buf < 10) {
if (buf_size < 10) {
av_log(avctx, AV_LOG_ERROR, "Too short header to parse\n");
return -1;
}


Loading…
Cancel
Save