mirror of
https://github.com/mpv-player/mpv
synced 2024-12-19 21:31:52 +00:00
Check for NULL vob->spudec before using.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4115 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
026cdf85b7
commit
ce183a3fd0
3
vobsub.c
3
vobsub.c
@ -754,7 +754,7 @@ vobsub_process(void *vobhandle, float pts)
|
||||
{
|
||||
vobsub_t *vob = (vobsub_t *)vobhandle;
|
||||
unsigned int pts100 = 100 * pts;
|
||||
if (vob->spudec)
|
||||
if (vob->spudec) {
|
||||
spudec_heartbeat(vob->spudec, pts100);
|
||||
if (vob->spu_streams && 0 <= vobsub_id && (unsigned) vobsub_id < vob->spu_streams_size) {
|
||||
packet_queue_t *queue = vob->spu_streams + vobsub_id;
|
||||
@ -768,6 +768,7 @@ vobsub_process(void *vobhandle, float pts)
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
|
Loading…
Reference in New Issue
Block a user