summaryrefslogtreecommitdiffstats
path: root/loader
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-08-27 16:28:53 +0000
committerUoti Urpala <uau@glyph.nonexistent.invalid>2010-11-02 04:15:49 +0200
commit5c083f82ca31ddd12a25c826a4a81a0778461d30 (patch)
tree7f5f94d628337b6eab23752da3cde0383e7dd5e7 /loader
parent04b8751a5caa87b7a4661ad89f9fef846b431f1f (diff)
downloadmpv-5c083f82ca31ddd12a25c826a4a81a0778461d30.tar.bz2
mpv-5c083f82ca31ddd12a25c826a4a81a0778461d30.tar.xz
loader: Disable loading codecs from the current directory
While convenient, it is too risky. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32025 b3059339-0415-0410-9bf9-f77b7e298cf2 100l, we need to search for SetDllDirectoryA instead of SetDllDirectory git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32026 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'loader')
-rw-r--r--loader/module.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/loader/module.c b/loader/module.c
index 6f3f0c3de9..6182d4b190 100644
--- a/loader/module.c
+++ b/loader/module.c
@@ -381,6 +381,10 @@ HMODULE WINAPI LoadLibraryExA(LPCSTR libname, HANDLE hfile, DWORD flags)
// if(fs_installed==0)
// install_fs();
+ // Do not load libraries from a path relative to the current directory
+ if (*libname != '/')
+ i++;
+
while (wm == 0 && listpath[++i])
{
if (i < 2)