Commit 30d06da6 authored by Alexandre Julliard's avatar Alexandre Julliard

Also look for the plain module specification in WINEDLLOVERRIDES for

modules that contain a path, for better consistency with the registry entries.
parent c6f155a5
......@@ -605,6 +605,14 @@ void MODULE_GetLoadOrderW( enum loadorder_type loadorder[], const WCHAR *app_nam
}
else /* module contains an explicit path */
{
/* then base name without '*' in environment */
if (get_env_load_order( basename, loadorder ))
{
TRACE( "got environment basename %s for %s\n",
debugstr_loadorder(loadorder), debugstr_w(path) );
goto done;
}
/* then base name without '*' in AppDefaults */
if (app_key && get_registry_value( app_key, basename, loadorder ))
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment