summaryrefslogtreecommitdiffstats
path: root/mpvcore/asxparser.c
diff options
context:
space:
mode:
Diffstat (limited to 'mpvcore/asxparser.c')
-rw-r--r--mpvcore/asxparser.c13
1 files changed, 2 insertions, 11 deletions
diff --git a/mpvcore/asxparser.c b/mpvcore/asxparser.c
index 804e796f85..16646b9347 100644
--- a/mpvcore/asxparser.c
+++ b/mpvcore/asxparser.c
@@ -449,7 +449,6 @@ asx_parse_ref(ASX_Parser_t* parser, char** attribs) {
static void asx_parse_entryref(ASX_Parser_t* parser,char* buffer,char** _attribs) {
char *href;
- stream_t* stream;
if(parser->deep > 0)
return;
@@ -459,16 +458,8 @@ static void asx_parse_entryref(ASX_Parser_t* parser,char* buffer,char** _attribs
asx_warning_attrib_required(parser,"ENTRYREF" ,"HREF" );
return;
}
- stream=stream_open(href, NULL);
- if(!stream) {
- mp_msg(MSGT_PLAYTREE,MSGL_WARN,"Can't open playlist %s\n",href);
- free(href);
- return;
- }
-
- mp_msg(MSGT_PLAYTREE,MSGL_ERR,"Not recursively loading playlist %s\n",href);
-
- free_stream(stream);
+ mp_msg(MSGT_PLAYTREE,MSGL_ERR,"Recursive playlist %s\n", href);
+ playlist_add_file(parser->pl, href);
free(href);
//mp_msg(MSGT_PLAYTREE,MSGL_INFO,"Need to implement entryref\n");
}