Revert "access: vdr: fix null dereference (cid #1346943)"

This reverts commit 3a22750ee6.
This made no sense; the predicate is always true.
This commit is contained in:
Rémi Denis-Courmont 2016-01-02 20:47:06 +02:00
parent 95422ad559
commit 2b8674932b

View File

@ -874,7 +874,7 @@ static void ImportMarks( access_t *p_access )
}
/* add a chapter at the beginning if missing */
if( p_marks->i_seekpoint > 0 && offsetv && offsetv[0] > 0 )
if( p_marks->i_seekpoint > 0 && offsetv[0] > 0 )
{
seekpoint_t *sp = vlc_seekpoint_New();
if( sp )