summaryrefslogtreecommitdiffstats
path: root/loader
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-03-24 01:07:11 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-03-24 01:07:11 +0000
commitb78d83301a2f92f867edb265923ecf34538cc8fa (patch)
treebfa44653e6d4ea5f5bf08b59582e655db15f2c68 /loader
parent1b58868670d4d2d4ded9ec70ea56a30fe1f600d7 (diff)
downloadmpv-b78d83301a2f92f867edb265923ecf34538cc8fa.tar.bz2
mpv-b78d83301a2f92f867edb265923ecf34538cc8fa.tar.xz
Remove /usr[/local]/lib/win32 from the list of Win32 codec search paths.
These paths have been deprecated a long time ago, just searching the default binary codec path is enough nowadays. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30955 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'loader')
-rw-r--r--loader/module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/loader/module.c b/loader/module.c
index d0f32d2537..b9dcfa5869 100644
--- a/loader/module.c
+++ b/loader/module.c
@@ -366,7 +366,7 @@ static WIN_BOOL MODULE_FreeLibrary( WINE_MODREF *wm )
HMODULE WINAPI LoadLibraryExA(LPCSTR libname, HANDLE hfile, DWORD flags)
{
WINE_MODREF *wm = 0;
- char* listpath[] = { "", "", "/usr/lib/win32", "/usr/local/lib/win32", 0 };
+ char* listpath[] = { "", "", 0 };
char path[512];
char checked[2000];
int i = -1;