From: Pierre d'Herbemont Date: Fri, 29 Feb 2008 13:52:08 +0000 (+0000) Subject: input/input.c: Misformatted if statement fix. Could someone check if that's really... X-Git-Tag: 0.9.0-test0~2426 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=a041f7eedbf62a0bf26576cac30bb1c9a76da0f8;p=vlc input/input.c: Misformatted if statement fix. Could someone check if that's really the wanted behaviour though. --- diff --git a/src/input/input.c b/src/input/input.c index 68c00c55fd..0e3ba0efb5 100644 --- a/src/input/input.c +++ b/src/input/input.c @@ -2192,10 +2192,11 @@ static int InputSourceInit( input_thread_t *p_input, if( !psz_access || (strncmp( psz_access, "udp", 3 ) && strncmp( psz_access, "rtp", 3 )) ) - - /* Find optional titles and seekpoints */ - MRLSections( p_input, psz_path, &in->i_title_start, &in->i_title_end, + { + /* Find optional titles and seekpoints */ + MRLSections( p_input, psz_path, &in->i_title_start, &in->i_title_end, &in->i_seekpoint_start, &in->i_seekpoint_end ); + } if( psz_forced_demux && *psz_forced_demux ) {