]> git.sesse.net Git - vlc/commitdiff
Qt: bugfix: playlist's add directory function was failing on input_Read (assert failed)
authorJean-Philippe Andre <jpeg@via.ecp.fr>
Fri, 12 Sep 2008 05:32:47 +0000 (01:32 -0400)
committerJean-Philippe Andre <jpeg@via.ecp.fr>
Fri, 12 Sep 2008 05:32:47 +0000 (01:32 -0400)
modules/gui/qt4/dialogs_provider.cpp

index 258da872e9b00d8b7f881fabc886148b2b274b1e..92df106f84e3754c7b809acc6f9325c2001e120a 100644 (file)
@@ -430,7 +430,7 @@ static void openDirectory( intf_thread_t *p_intf, bool pl, bool go )
                        go ? ( PLAYLIST_APPEND | PLAYLIST_GO ) : PLAYLIST_APPEND,
                        PLAYLIST_END, pl, pl_Unlocked );
         if( !go )
-            input_Read( THEPL, p_input, false );
+            input_Read( THEPL, p_input, true );
         vlc_gc_decref( p_input );
     }
 }