mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 06:30:37 +00:00
winetest: Fix winetest to cope with com dlls.
This commit is contained in:
parent
6888ea3913
commit
5b600b57c4
@ -589,7 +589,7 @@ static HMODULE load_com_dll(const char *name)
|
||||
{
|
||||
LONG size = sizeof(dllname);
|
||||
if(RegQueryValueA(hkey, NULL, dllname, &size) == ERROR_SUCCESS)
|
||||
dll = LoadLibraryExA(dllname, NULL, LOAD_LIBRARY_AS_DATAFILE);
|
||||
dll = LoadLibraryA(dllname);
|
||||
RegCloseKey(hkey);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user