Browse Source

Fixes NULL pointer dereference CID66

Originally committed as revision 13483 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 17 years ago
parent
commit
fce88d52ca
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      libavformat/avidec.c

+ 3
- 0
libavformat/avidec.c View File

@@ -650,6 +650,9 @@ static int avi_read_packet(AVFormatContext *s, AVPacket *pkt)
best_stream_index= i;
}
}
if(!best_st)
return -1;

best_ast = best_st->priv_data;
best_ts= av_rescale(best_ts, best_st->time_base.den, AV_TIME_BASE * (int64_t)best_st->time_base.num); //FIXME a little ugly
if(best_ast->remaining)


Loading…
Cancel
Save