mirror of
https://github.com/reactos/wine.git
synced 2024-11-28 22:20:26 +00:00
Fixed checking of special dll names.
This commit is contained in:
parent
f2b71d1468
commit
1df18838f6
@ -199,11 +199,11 @@ static const char *WinVersionNames[NB_WINDOWS_VERSIONS] =
|
||||
version autodetection switches wine to unicode (nt 3.51 or 4.0) */
|
||||
static char * special_dlls[] =
|
||||
{
|
||||
"COMDLG32",
|
||||
"COMCTL32",
|
||||
"SHELL32",
|
||||
"OLE32",
|
||||
"RPCRT4",
|
||||
"comdlg32.dll",
|
||||
"comctl32.dll",
|
||||
"shell32.dll",
|
||||
"ole32.dll",
|
||||
"rpcrt4.dll",
|
||||
NULL
|
||||
};
|
||||
|
||||
@ -432,7 +432,7 @@ static DWORD VERSION_GetLinkedDllVersion(void)
|
||||
for (i = 0; special_dlls[i]; i++)
|
||||
{
|
||||
/* test if it is a special dll */
|
||||
if (!strncasecmp(wm->modname, special_dlls[i], strlen(special_dlls[i]) ))
|
||||
if (!strcasecmp(wm->modname, special_dlls[i]))
|
||||
{
|
||||
DWORD DllVersion = VERSION_GetSystemDLLVersion(wm->module);
|
||||
if (WinVersion == NB_WINDOWS_VERSIONS)
|
||||
|
Loading…
Reference in New Issue
Block a user