[vlc-devel] commit: Qt: bugfix: playlist' s add directory function was failing on input_Read (assert failed) ( Jean-Philippe Andre )
git version control
git at videolan.org
Fri Sep 12 18:40:59 CEST 2008
vlc | branch: 0.9-bugfix | Jean-Philippe Andre <jpeg at via.ecp.fr> | Fri Sep 12 01:32:47 2008 -0400| [1744655d6e020573b37ff2604be758505494eebc] | committer: Jean-Baptiste Kempf
Qt: bugfix: playlist's add directory function was failing on input_Read (assert failed)
(cherry picked from commit afd60281ee0c27bfc31cf3bc09aa24b4f7ad95fd)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=1744655d6e020573b37ff2604be758505494eebc
---
modules/gui/qt4/dialogs_provider.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/gui/qt4/dialogs_provider.cpp b/modules/gui/qt4/dialogs_provider.cpp
index 258da87..92df106 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 );
}
}
More information about the vlc-devel
mailing list