changeset 36144:43bff9dd44be

Disable dangerous feature in ASX playlist parser.
author reimar
date Sun, 05 May 2013 17:02:30 +0000
parents 3c1595fcf004
children 47edff322a99
files asxparser.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/asxparser.c	Sun May 05 07:27:33 2013 +0000
+++ b/asxparser.c	Sun May 05 17:02:30 2013 +0000
@@ -405,7 +405,8 @@
       mp_msg(MSGT_PLAYTREE,MSGL_WARN,"\n");
     return;
   }
-  play_tree_set_param(pt,name,val);
+  mp_msg(MSGT_PLAYTREE, MSGL_ERR, "Support for specifying parameters in playlists has been disabled.\n");
+//  play_tree_set_param(pt,name,val);
   free(name);
   free(val);
 }