From f4d1285582586efdc39d8c87753dc577f703389b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rafa=C3=ABl=20Carr=C3=A9?= Date: Wed, 19 Dec 2007 23:28:02 +0000 Subject: [PATCH] xspf: use correct return value. VLC_FALSE == VLC_SUCCESS --- modules/demux/playlist/xspf.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/demux/playlist/xspf.c b/modules/demux/playlist/xspf.c index b379ce3aa5..600439d619 100644 --- a/modules/demux/playlist/xspf.c +++ b/modules/demux/playlist/xspf.c @@ -118,7 +118,8 @@ int Demux( demux_t *p_demux ) if( i_ret == VLC_SUCCESS ) i_ret = parse_playlist_node( p_demux, p_playlist, p_current_input, - p_xml_reader, "playlist" ); + p_xml_reader, "playlist" ) + ? VLC_SUCCESS : VLC_EGENERIC; HANDLE_PLAY_AND_RELEASE; if( p_xml_reader ) xml_ReaderDelete( p_xml, p_xml_reader ); -- 2.39.5