mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 22:50:43 +00:00
Fixed regression in loading of builtin apps from the system dir when
the native doesn't exist.
This commit is contained in:
parent
d3fb25cd0f
commit
464cc10419
@ -110,7 +110,7 @@ static BOOL get_builtin_path( const WCHAR *libname, const WCHAR *ext, WCHAR *fil
|
||||
if (strncmpiW( filename, sysdir, len ) || filename[len] != '\\')
|
||||
return FALSE;
|
||||
while (filename[len] == '\\') len++;
|
||||
if (filename != file_part) return FALSE;
|
||||
if (filename + len != file_part) return FALSE;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user