Commit fce88d52 authored by Michael Niedermayer's avatar Michael Niedermayer

Fixes NULL pointer dereference CID66

Originally committed as revision 13483 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 9d4cd3bf
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment