]> git.sesse.net Git - vlc/commitdiff
input/input.c: Misformatted if statement fix. Could someone check if that's really...
authorPierre d'Herbemont <pdherbemont@videolan.org>
Fri, 29 Feb 2008 13:52:08 +0000 (13:52 +0000)
committerPierre d'Herbemont <pdherbemont@videolan.org>
Fri, 29 Feb 2008 13:52:08 +0000 (13:52 +0000)
src/input/input.c

index 68c00c55fdda0e35dd9f68801520478423ff5a99..0e3ba0efb539e5e0c4500f1b6c2c5ec549de731b 100644 (file)
@@ -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 )
         {