mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/mpeg: Don't use unintialized value
vobsub_read_packet() didn't check whether an array of AVPackets was valid and therefore used uninitialized values. Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
parent
46d2b2071b
commit
a39536caee
|
@ -927,6 +927,10 @@ static int vobsub_read_packet(AVFormatContext *s, AVPacket *pkt)
|
|||
FFDemuxSubtitlesQueue *tmpq = &vobsub->q[i];
|
||||
int64_t ts;
|
||||
av_assert0(tmpq->nb_subs);
|
||||
|
||||
if (tmpq->current_sub_idx >= tmpq->nb_subs)
|
||||
continue;
|
||||
|
||||
ts = tmpq->subs[tmpq->current_sub_idx].pts;
|
||||
if (ts < min_ts) {
|
||||
min_ts = ts;
|
||||
|
|
Loading…
Reference in New Issue