[vlc-devel] [PATCH] playlist: don't abort if "media-library" is not specified
Thomas Guillem
thomas at gllm.fr
Mon Nov 17 14:53:09 CET 2014
---
src/playlist/engine.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/playlist/engine.c b/src/playlist/engine.c
index 990bcb1..b9e2a04 100644
--- a/src/playlist/engine.c
+++ b/src/playlist/engine.c
@@ -244,7 +244,7 @@ playlist_t *playlist_Create( vlc_object_t *p_parent )
ml = NULL;
PL_UNLOCK;
- if( unlikely(root == NULL || playing == NULL || ml == NULL) )
+ if( unlikely(root == NULL || playing == NULL) )
abort();
p_playlist->p_root = root;
--
2.1.1
More information about the vlc-devel
mailing list