* autoload.cc (dll_load): Only perform DONT_RESOLVE_DLL_REFERENCES hack on
systems which need it. * wincap.cc (use_dont_resolve_hack): Set as appropriate. * wincap.h (use_dont_resolve_hack): Define.
This commit is contained in:
@ -216,7 +216,8 @@ static __inline bool
|
||||
dll_load (HANDLE& handle, WCHAR *name)
|
||||
{
|
||||
HANDLE h = LoadLibraryW (name);
|
||||
if (!h && in_forkee && handle && GetLastError () == ERROR_INVALID_ADDRESS)
|
||||
if (!h && in_forkee && handle && GetLastError () == ERROR_INVALID_ADDRESS
|
||||
&& wincap.use_dont_resolve_hack ())
|
||||
h = LoadLibraryExW (name, NULL, DONT_RESOLVE_DLL_REFERENCES);
|
||||
if (!h)
|
||||
return false;
|
||||
|
Reference in New Issue
Block a user