From: Jean-Philippe Andre Date: Fri, 12 Sep 2008 05:32:47 +0000 (-0400) Subject: Qt: bugfix: playlist's add directory function was failing on input_Read (assert failed) X-Git-Tag: 1.0.0-pre1~3330 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=afd60281ee0c27bfc31cf3bc09aa24b4f7ad95fd;hp=f99c3dbd2a2e8028dafb603db7661239873fa758;p=vlc Qt: bugfix: playlist's add directory function was failing on input_Read (assert failed) --- 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 ); } }