From afd60281ee0c27bfc31cf3bc09aa24b4f7ad95fd Mon Sep 17 00:00:00 2001 From: Jean-Philippe Andre Date: Fri, 12 Sep 2008 01:32:47 -0400 Subject: [PATCH] Qt: bugfix: playlist's add directory function was failing on input_Read (assert failed) --- modules/gui/qt4/dialogs_provider.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/gui/qt4/dialogs_provider.cpp b/modules/gui/qt4/dialogs_provider.cpp index 258da872e9..92df106f84 100644 --- a/modules/gui/qt4/dialogs_provider.cpp +++ b/modules/gui/qt4/dialogs_provider.cpp @@ -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 ); } } -- 2.39.2