Browse Source

oggparsevorbis: fix null ptr dereference

Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.0
Michael Niedermayer 13 years ago
parent
commit
18b46a494e
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavformat/oggparsevorbis.c

+ 2
- 2
libavformat/oggparsevorbis.c View File

@@ -203,12 +203,12 @@ vorbis_header (AVFormatContext * s, int idx)
int pkt_type = os->buf[os->pstart];

if (!(pkt_type & 1))
return 0;
return os->private ? 0 : -1;

if (!os->private) {
os->private = av_mallocz(sizeof(struct oggvorbis_private));
if (!os->private)
return 0;
return -1;
}

if (os->psize < 1 || pkt_type > 5)


Loading…
Cancel
Save