Commit 464cc104 authored by Alexandre Julliard's avatar Alexandre Julliard

Fixed regression in loading of builtin apps from the system dir when

the native doesn't exist.
parent d3fb25cd
......@@ -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
{
......
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