Skip to content

Commit

Permalink
Revised library loading for ARM64X pure forwarder (dotnet#47115)
Browse files Browse the repository at this point in the history
  • Loading branch information
lextm authored Mar 18, 2023
1 parent c52fd93 commit afcb2ec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ HandlerResolver::LoadRequestHandlerAssembly(const IHttpApplication &pApplication

LOG_INFOF(L"Loading request handler: '%ls'", handlerDllPath.c_str());

hRequestHandlerDll = LoadLibrary(handlerDllPath.c_str());
hRequestHandlerDll = LoadLibraryEx(handlerDllPath.c_str(), 0, LOAD_LIBRARY_SEARCH_DEFAULT_DIRS | LOAD_LIBRARY_SEARCH_DLL_LOAD_DIR);
RETURN_LAST_ERROR_IF_NULL(hRequestHandlerDll);

if (preventUnload)
Expand Down

0 comments on commit afcb2ec

Please sign in to comment.