Commit a9d4b071 authored by Dimitrie O. Paun's avatar Dimitrie O. Paun Committed by Alexandre Julliard

Fix typo introduced during the path search reorganizaton.

parent 9c39156e
......@@ -186,13 +186,13 @@ static void identify_lib_files(strarray *lib_files)
{
for (j = 0; j < lib_paths->size; j++)
{
if (identify_lib_file(lib_paths->base[i], lib_files->base[i]))
if (identify_lib_file(lib_paths->base[j], lib_files->base[i]))
break;
}
if (j < lib_paths->size) continue;
for (j = 0; j < sizeof(std_paths)/sizeof(std_paths[0]); j++)
{
if (identify_lib_file(std_paths[i], lib_files->base[i]))
if (identify_lib_file(std_paths[j], lib_files->base[i]))
break;
}
if (j < sizeof(std_paths)/sizeof(std_paths[0])) continue;
......
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