From db3f4c8b4a3146c3d24f497fb588f195b086f17a Mon Sep 17 00:00:00 2001 From: Michael Roitzsch Date: Fri, 7 Mar 2003 17:01:34 +0000 Subject: properly unescape relative MRLs CVS patchset: 4361 CVS date: 2003/03/07 17:01:34 --- src/input/input_file.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/input/input_file.c b/src/input/input_file.c index ed61343df..5800f20a6 100644 --- a/src/input/input_file.c +++ b/src/input/input_file.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: input_file.c,v 1.75 2003/03/03 07:37:23 esnel Exp $ + * $Id: input_file.c,v 1.76 2003/03/07 17:01:34 mroi Exp $ */ #ifdef HAVE_CONFIG_H @@ -227,7 +227,7 @@ static input_plugin_t *open_plugin (input_class_t *cls_gen, xine_stream_t *strea if (!strncasecmp (mrl, "file:", 5)) filename = decode_uri (&mrl[5]); else - filename = mrl; + filename = decode_uri(mrl); fh = open (filename, O_RDONLY); -- cgit v1.2.3