Browse Source

avidec: Dont crash on avi packets that belong to dv streams in dv in avi

Fixes null pointer dereference

Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.11
Michael Niedermayer 13 years ago
parent
commit
096231d497
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      libavformat/avidec.c

+ 5
- 0
libavformat/avidec.c View File

@@ -958,6 +958,11 @@ start_sync:
st = s->streams[n];
ast = st->priv_data;

if (!ast) {
av_log(s, AV_LOG_WARNING, "Skiping foreign stream %d packet\n", n);
continue;
}

if(s->nb_streams>=2){
AVStream *st1 = s->streams[1];
AVIStream *ast1= st1->priv_data;


Loading…
Cancel
Save