Browse Source

avcodec/shorten: Check skip_bytes()

Fixes CID1210526

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.7
Michael Niedermayer 10 years ago
parent
commit
d201becfc0
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      libavcodec/shorten.c

+ 5
- 0
libavcodec/shorten.c View File

@@ -370,6 +370,11 @@ static int read_header(ShortenContext *s)
s->nmean = get_uint(s, 0);

skip_bytes = get_uint(s, NSKIPSIZE);
if ((unsigned)skip_bytes > get_bits_left(&s->gb)/8) {
av_log(s->avctx, AV_LOG_ERROR, "invalid skip_bytes: %d\n", skip_bytes);
return AVERROR_INVALIDDATA;
}

for (i = 0; i < skip_bytes; i++)
skip_bits(&s->gb, 8);
}


Loading…
Cancel
Save