]> git.sesse.net Git - vlc/commitdiff
Streaming output works again. Closes #1047
authorRafaël Carré <funman@videolan.org>
Thu, 5 Apr 2007 17:08:49 +0000 (17:08 +0000)
committerRafaël Carré <funman@videolan.org>
Thu, 5 Apr 2007 17:08:49 +0000 (17:08 +0000)
src/playlist/loadsave.c

index 8097d09589b7cc2d89caa41c3204f96cc971b4cf..4a32c991115dbeff6f908efad7b90bc5922941c9 100644 (file)
@@ -86,9 +86,6 @@ int playlist_Export( playlist_t * p_playlist, const char *psz_filename ,
 
 int playlist_MLLoad( playlist_t *p_playlist )
 {
-#ifndef THIS_PIECE_OF_CODE_IS_FIXED // see #1047 and possibly others
-    (void)p_playlist;
-#else
     char *psz_uri, *psz_homedir =p_playlist->p_libvlc->psz_homedir;
     input_item_t *p_input;
 
@@ -113,7 +110,6 @@ int playlist_MLLoad( playlist_t *p_playlist )
     p_playlist->b_doing_ml = VLC_FALSE;
 
     free( psz_uri );
-#endif
     return VLC_SUCCESS;
 }