mirror of
https://github.com/reactos/wine.git
synced 2024-11-28 14:10:32 +00:00
Properly handle loadorder specifications containing a .dll extension.
This commit is contained in:
parent
77002ffc13
commit
55ce53d5d7
@ -260,13 +260,7 @@ static BOOL AddLoadOrderSet(char *key, char *order)
|
||||
while(cptr)
|
||||
{
|
||||
char *ext = strrchr(cptr, '.');
|
||||
if(ext)
|
||||
{
|
||||
if(strlen(ext) == 4 &&
|
||||
(!FILE_strcasecmp(ext, ".dll") || !FILE_strcasecmp(ext, ".exe")))
|
||||
MESSAGE("Warning: Loadorder override '%s' contains an extension and might not be found during lookup\n", cptr);
|
||||
}
|
||||
|
||||
if(ext && !FILE_strcasecmp( ext, ".dll" )) *ext = 0;
|
||||
ldo.modulename = cptr;
|
||||
if(!AddLoadOrder(&ldo)) return FALSE;
|
||||
cptr = get_tok(NULL, ", \t");
|
||||
|
Loading…
Reference in New Issue
Block a user