[vlc-commits] Revert "lua extensions: open a URI, not a filepath"
Jean-Baptiste Kempf
git at videolan.org
Tue Feb 10 13:58:57 CET 2015
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Tue Feb 10 13:57:33 2015 +0100| [a759cda54211efb37bfeed651a0725c8a5bd5248] | committer: Jean-Baptiste Kempf
Revert "lua extensions: open a URI, not a filepath"
This reverts commit 916c380e2bf648968af243523a242ff83c048558.
Ref #13752
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a759cda54211efb37bfeed651a0725c8a5bd5248
---
modules/lua/extension.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/lua/extension.c b/modules/lua/extension.c
index b047de0..5958af1 100644
--- a/modules/lua/extension.c
+++ b/modules/lua/extension.c
@@ -298,7 +298,7 @@ int ScanLuaCallback( vlc_object_t *p_this, const char *psz_filename,
}
else
{
- psz_script = vlc_path2uri( psz_filename, "file" );
+ psz_script = strdup( psz_filename );
if( !psz_script )
return 0;
}
More information about the vlc-commits
mailing list