Browse Source

Avoid a possible overflow when reading Nikon avi files.

Suggested-by: Reimar
tags/n2.2-rc1
Carl Eugen Hoyos 12 years ago
parent
commit
b7702fafb3
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      libavformat/avidec.c

+ 1
- 2
libavformat/avidec.c View File

@@ -350,8 +350,7 @@ static void avi_read_nikon(AVFormatContext *s, uint64_t end)
uint16_t size = avio_rl16(s->pb);
const char *name = NULL;
char buffer[64] = { 0 };
if (avio_tell(s->pb) + size > tag_end)
size = tag_end - avio_tell(s->pb);
size = FFMIN(size, tag_end - avio_tell(s->pb));
size -= avio_read(s->pb, buffer,
FFMIN(size, sizeof(buffer) - 1));
switch (tag) {


Loading…
Cancel
Save