Commit 2b867493 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

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

This reverts commit 3a22750e.
This made no sense; the predicate is always true.
parent 95422ad5
......@@ -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 )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment