diff loader/module.c @ 30913:e1e4487b9b43

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.
author diego
date Wed, 24 Mar 2010 01:07:11 +0000
parents b32527b30d17
children 3cf08a0ae965
line wrap: on
line diff
--- a/loader/module.c	Tue Mar 23 22:59:14 2010 +0000
+++ b/loader/module.c	Wed Mar 24 01:07:11 2010 +0000
@@ -366,7 +366,7 @@
 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;