diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-03-07 17:01:34 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-03-07 17:01:34 +0000 |
commit | db3f4c8b4a3146c3d24f497fb588f195b086f17a (patch) | |
tree | 3b9b03100f6183176950961ff886870320930a6b /src | |
parent | de32e15f3b97963da9670a2e32609c4b1f033775 (diff) | |
download | xine-lib-db3f4c8b4a3146c3d24f497fb588f195b086f17a.tar.gz xine-lib-db3f4c8b4a3146c3d24f497fb588f195b086f17a.tar.bz2 |
properly unescape relative MRLs
CVS patchset: 4361
CVS date: 2003/03/07 17:01:34
Diffstat (limited to 'src')
-rw-r--r-- | src/input/input_file.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); |