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

the native doesn't exist.
This commit is contained in:
Alexandre Julliard 2003-11-17 20:18:19 +00:00
parent d3fb25cd0f
commit 464cc10419
1 changed files with 1 additions and 1 deletions

View File

@ -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
{