Browse Source

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>
tags/n4.3
Andreas Rheinhardt 6 years ago
parent
commit
a39536caee
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      libavformat/mpeg.c

+ 4
- 0
libavformat/mpeg.c View File

@@ -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…
Cancel
Save