]> git.sesse.net Git - vlc/blobdiff - modules/demux/playlist/pls.c
fix #1410.
[vlc] / modules / demux / playlist / pls.c
index ef7d059f96346e2163b75f589397e354d119ea90..fdde1b70d2abcf0ce374f7a49cfe72cc70eab62d 100644 (file)
@@ -161,7 +161,7 @@ static int Demux( demux_t *p_demux )
                 p_input = input_ItemNewExt( p_playlist, psz_mrl, psz_name,
                                             0, NULL, -1 );
                 input_ItemCopyOptions( p_current_input, p_input );
-                input_ItemAddSubItem( p_current_input, p_input );
+                input_ItemAddSubItem( p_current_input, p_input, VLC_FALSE );
                 vlc_gc_decref( p_input );
             }
             else
@@ -221,7 +221,7 @@ static int Demux( demux_t *p_demux )
     {
         p_input = input_ItemNewExt( p_playlist, psz_mrl, psz_name,0, NULL, -1 );
         input_ItemCopyOptions( p_current_input, p_input );
-        input_ItemAddSubItem( p_current_input, p_input );
+        input_ItemAddSubItem( p_current_input, p_input, VLC_FALSE );
         vlc_gc_decref( p_input );
         free( psz_mrl_orig );
         psz_mrl = NULL;