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>
This commit is contained in:
parent
9789b6ca48
commit
096231d497
@ -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…
x
Reference in New Issue
Block a user