summaryrefslogtreecommitdiff
path: root/libavformat/sbgdec.c
diff options
context:
space:
mode:
authorAndreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>2016-11-10 22:21:20 +0100
committerAndreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>2016-11-23 01:16:42 +0100
commitdbefbb61b785cd77810c032f5cdb499d2a92df07 (patch)
treed8886f0509eac3421b7c60793fc098aa3da20fab /libavformat/sbgdec.c
parentde4ded06366e5767d0af277a61d9a56b8c8f9c19 (diff)
downloadffmpeg-dbefbb61b785cd77810c032f5cdb499d2a92df07.tar.gz
sbgdec: prevent NULL pointer access
Reviewed-by: Josh de Kock <josh@itanimul.li> Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
Diffstat (limited to 'libavformat/sbgdec.c')
-rw-r--r--libavformat/sbgdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/sbgdec.c b/libavformat/sbgdec.c
index bb020d7f9a..cbedd120fb 100644
--- a/libavformat/sbgdec.c
+++ b/libavformat/sbgdec.c
@@ -927,7 +927,7 @@ static void expand_timestamps(void *log, struct sbg_script *s)
}
}
if (s->start_ts == AV_NOPTS_VALUE)
- s->start_ts = s->opt_start_at_first ? s->tseq[0].ts.t : now;
+ s->start_ts = (s->opt_start_at_first && s->tseq) ? s->tseq[0].ts.t : now;
s->end_ts = s->opt_duration ? s->start_ts + s->opt_duration :
AV_NOPTS_VALUE; /* may be overridden later by -E option */
cur_ts = now;