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] != '\\')
|
if (strncmpiW( filename, sysdir, len ) || filename[len] != '\\')
|
||||||
return FALSE;
|
return FALSE;
|
||||||
while (filename[len] == '\\') len++;
|
while (filename[len] == '\\') len++;
|
||||||
if (filename != file_part) return FALSE;
|
if (filename + len != file_part) return FALSE;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue